我有一個安裝了數據類型爲Card的模塊。我讓它類展會,但東西的情況下出問題的ghci的:嘗試定義實例時出現無限循環顯示數據類型
module Poker where
data Card = Card Int
...
instance Show Card where
show card = ...
...
我打開ghci的和類型:
>:m + Poker
>Card 0
..
..
..
(Nothing) => I stop the execution
>Poker.show (Card 0)
> "Ace of Hearts"
這似乎是我的數據類型是不是類展會的一個實例,爲什麼?
謝謝大家!有用! :)
另外http://stackoverflow.com/questions/7863176/ – sdcvvc