将 Int 转换为整数

发布于 2024-09-30 14:44:14 字数 324 浏览 2 评论 0原文

可能的重复:
Haskell 错误:无法匹配预期类型 <代码>整数&#39;针对推断类型Int'

如何在 Haskell 中将 Int 转换为 Integer

Possible Duplicate:
Haskell Error: Couldn't match expected type Integer' against inferred typeInt'

How can I convert Int to Integer in Haskell?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

遮云壑 2024-10-07 14:44:15

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.

野稚 2024-10-07 14:44:15

另外,您可以使用 fromIntegral (因为 Int 是一个 Integral

also, you can use fromIntegral (since Int is an Integral)

我恋#小黄人 2024-10-07 14:44:14

有一个 toInteger 您可以使用的功能。

There is a toInteger function you can use.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文