ให้ :
data Foo =
FooString String
…
class Fooable a where --(is this a good way to name this?)
toFoo :: a -> Foo
ฉันต้องการสร้างString
ตัวอย่างของFooable
:
instance Fooable String where
toFoo = FooString
GHC ก็บ่นว่า:
Illegal instance declaration for `Fooable String'
(All instance types must be of the form (T t1 ... tn)
where T is not a synonym.
Use -XTypeSynonymInstances if you want to disable this.)
In the instance declaration for `Fooable String'
ถ้าฉันใช้[Char]
:
instance Fooable [Char] where
toFoo = FooString
GHC บ่น:
Illegal instance declaration for `Fooable [Char]'
(All instance types must be of the form (T a1 ... an)
where a1 ... an are type *variables*,
and each type variable appears at most once in the instance head.
Use -XFlexibleInstances if you want to disable this.)
In the instance declaration for `Fooable [Char]'
คำถาม :
- เหตุใดฉันจึงไม่สามารถสร้าง String และอินสแตนซ์ของประเภทคลาสได้
- GHC ดูเหมือนเต็มใจที่จะให้ฉันหลีกหนีจากสิ่งนี้หากฉันเพิ่มธงพิเศษ นี่เป็นความคิดที่ดีหรือไม่?