在http://en.wikibooks.org/wiki/Haskell/Beginning
中举例说明Prelude> let abs x = if x < 0 then -x else x
Prelude> abs 5
5
Prelude> abs -3
<interactive>:1:6:
No instance for (Num (a0 -> a0))
arising from the literal `3'
Possible fix: add an instance declaration for (Num (a0 -> a0))
In the second argument of `(-)', namely `3'
In the expression: abs - 3
In an equation for `it': it = abs - 3
怎么了?
答案 0 :(得分:14)
Haskell认为您试图从3
中减去abs
,并抱怨abs
不是数字。使用一元否定运算符时需要添加括号:
abs (-3)
答案 1 :(得分:5)
口译员认为您的意思是abs - 3
而不是abs (-3)
。你需要括号来消除代码的歧义,并确保你打算使用一元“ - ”函数,而不是减法运算符。