我目前正在尝试为原始算术函数编写一个小 Show 实例。
目标是制作可显示的功能列表。
非常简单的 show 函数如下所示:
showOp :: (Int -> Int -> Int) -> String
showOp op
| op 3 3 == 6 = "plus"
| op 3 3 == 0 = "minus"
| op 3 3 == 9 = "times"
| op 3 3 == 1 = "divide"
| otherwise = "undefined"
但我无法获得(Int -> Int -> Int)的 Show 实例。我是这样尝试的:
instance Show (Int -> Int -> Int) where
show op = show "asdf"
但它不起作用。WinHugs 只返回错误
Syntax error in instance head (variable expected)
甚至可以为函数定义 Show 吗?如果是,我该如何解决这个问题?