谁能解释为什么这会在负面输入时崩溃?
add :: Integral a => (a -> a) -> a -> a
add f n | n<0 = error "only non-negative integers allowed as input"
| otherwise = sum[ f x |x<-[1..n] ]
foo:: Int -> Int
foo x = x
Run Code Online (Sandbox Code Playgroud)
*Main> add foo -5
<interactive>:82:9:
No instance for (Num (Int -> Int))
arising from a use of `-'
Possible fix: add an instance declaration for (Num (Int -> Int))
In the expression: add foo - 5
In an equation for `it': it = add foo - 5
Run Code Online (Sandbox Code Playgroud)
Zet*_*eta 10
你必须写(-5)清楚你正在使用一元-,否则haskell将读-作二进制运算符:
add foo (-5)
Run Code Online (Sandbox Code Playgroud)