作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以,我正在用 SML 编写一个程序。它工作得很好,但是当应用非常大的整数时,它会产生以下错误:
uncaught exception Overflow [overflow]
raised at:Basis/Implementation/num-scan.sml:268.20-268.28
最佳答案
使用 IntInf.toString
:
$ sml
Standard ML of New Jersey v110.79 [built: Tue Aug 8 23:21:20 2017]
- IntInf.toString 1234567890123456789012345678901234567890;
[autoloading]
[...]
val it = "1234567890123456789012345678901234567890" : string
open IntInf
以便
int
类型被
IntInf.int
类型覆盖。但似乎 SML/NJ 以这种方式灵活,这显然没有必要,至少在 REPL 中没有必要。
- IntInf.pow (IntInf.fromInt 2, 64);
val it = 18446744073709551616 : IntInf.int
2
和
64
适合函数:
- IntInf.fromInt;
val it = fn : int -> IntInf.int
- IntInf.pow;
val it = fn : IntInf.int * int -> IntInf.int
IntInf
或 31 位整数,但您也可以构造一个
IntInf
而不引用这样的文字,使用纯粹较小的整数和库函数(以便
IntInf
更多地被视为抽象类型)。并不是说这是必要的。
关于sml - 我可以将 IntInf 转换为 String 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56438072/
所以,我正在用 SML 编写一个程序。它工作得很好,但是当应用非常大的整数时,它会产生以下错误: uncaught exception Overflow [overflow]
我想通过此链接中的 pow 等函数在 SML 中执行大整数计算: http://www.standardml.org/Basis/int-inf.html#IntInf:STR:SPEC 但是我怎样才
我是一名优秀的程序员,十分优秀!