将 Int 转换为整数
如何在 Haskell 中将 Int
转换为 Integer
?
Possible Duplicate:
Haskell Error: Couldn't match expected typeInteger' against inferred type
Int'
How can I convert Int
to Integer
in Haskell?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
fromIntegral 是将任何 Integral 值转换为任何其他 Integeral 的良好通用方法。但正如某句话所说, toInteger 适用于专门转换为 Integer 的情况。
fromIntegral is a good generic way to convert any Integral value into any other Integeral. But as sth said, toInteger works for the case of converting specifically to an Integer.
另外,您可以使用
fromIntegral
(因为Int
是一个Integral
)also, you can use
fromIntegral
(sinceInt
is anIntegral
)有一个
toInteger
您可以使用的功能。There is a
toInteger
function you can use.