作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Num a"?-6ren"> Num a"?-我学习 Haskell。我将命令发送到 ghci::info Num . ghci> :info Num class Num a where (+) :: a -> a -> a (*) :: a --6ren">
我学习 Haskell。我将命令发送到 ghci::info Num
.
ghci> :info Num
class Num a where
(+) :: a -> a -> a
(*) :: a -> a -> a
(-) :: a -> a -> a
negate :: a -> a
abs :: a -> a
signum :: a -> a
fromInteger :: Integer -> a
-- Defined in `GHC.Num'
instance Num Integer -- Defined in `GHC.Num'
instance Num Int -- Defined in `GHC.Num'
instance Num Float -- Defined in `GHC.Float'
instance Num Double -- Defined in `GHC.Float'
class (Eq a, Show a) => Num a
,但我看到
class Num a where
.我很惊讶...好吧,我打开 Hoogle 并尝试查找
Num
的信息类类型。我得到了
this result .我看到
class (Eq a, Show a) => Num a
在搜索结果的第一条记录中。但是当我打开源代码时,我看到:
-- | Basic numeric class.
--
-- Minimal complete definition: all except 'negate' or @(-)@
class Num a where
class Num a where
而不是
class (Eq a, Show a) => Num a
?
最佳答案
黑客显示 class (Eq a, Show a) => Num a
可能是一个错误,但确实没有理由 Num a
要求 Eq a
和 Show a
.
关于haskell - 为什么我得到 "class Num a where"而不是 "class (Eq a, Show a) => Num a"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27561604/
我是一名优秀的程序员,十分优秀!