我现在正在学习 Haskell,并且正在尝试使用函数组合。
我写了两个函数。
let func1 x y = x + y
let func2 t = t*2
但是,当我尝试组合这两个函数时,
func2 . func1 1 2
我希望得到 6 个。
相反,我收到此错误:
No instance for (Num (a -> b))
arising from a use of `func1' at <interactive>:1:8-16
Possible fix: add an instance declaration for (Num (a -> b))
In the second argument of `(.)', namely `func1 1 2'
In the expression: func2 . func1 1 2
In the definition of `it': it = func2 . func1 1 2
有人可以解释为什么这不起作用吗?