Haskell自定义数据类型,实例Num和冗余

时间:2015-02-23 03:19:43

标签: haskell types instance

我正在Haskell开发一小部分举重工具作为学习练习。我已经定义了数据类型Weight,以便:

data Weight = Wt Float Unit 
              deriving (Show, Eq)

data Unit   = Lb | Kg 
              deriving (Show, Eq)

instance Num Weight where
  Wt x Lb + Wt y Lb = Wt (x + y) Lb
  Wt x Lb * Wt y Lb = Wt (x * y) Lb
  negate (Wt x Lb)  = Wt (negate x) Lb
  abs    (Wt x Lb)  = Wt (abs x) Lb
  signum (Wt x Lb)  = Wt (signum x) Lb
  fromInteger x     = Wt (fromInteger x) Lb
  -- Repeat for Kg...

有没有办法在Num实例定义中为Unit指定泛型类型?指定类似的东西会很好:

instance Num Weight where
  Wt x a + Wt y a = Wt (x + y) a
  -- ...

而不是用其他构造函数重复所有内容。

1 个答案:

答案 0 :(得分:5)

你可以使用警卫。以下代码是错误的,因为我确定你已经注意到了:

instance Num Weight where
    Wt x a + Wt y a = Wt (x + y) a
    -- ...

但这很好:

instance Num Weight where
    Wt x a + Wt y b | a == b = Wt (x + y) a
    -- ...

请记住,如果有人试图将磅数增加到磅数,那么除非你处理这种情况,否则你的代码会出错。