4
iが多クラスツリーのためのいくつかのインスタンスを作成しようとしていますが、私はそれを得るいけない、ハスケル、クラス内の関数宣言
見て、私のコードは次のとおりです。
data BTree a = BLeaf a | BBranch a (BTree a) (BTree a) deriving(Show)
data TTree a = TLeaf a | TBranch a (TTree a) (TTree a) (TTree a) deriving(Show)
class Tree a where
getName :: a -> a -- How should i declare this function?
instance Tree (BTree a) where
getName (BLeaf name) = name
getName (BBranch name lhs rhs) = name
instance Tree (TTree a) where
getName (TLeaf name) = name
getName (TBranch name lhs mhs rhs) = name
test1 = getName (BLeaf 1)
test2 = getName (TLeaf 1)
GHCiのは言います:
Couldn't match expected type `a' with actual type `BTree a'
したがって、getName-functionをどのように宣言する必要がありますか?