如何在 tcl 中处理大整数(64 位)?
在 expr 命令中处理大整数的最佳方法是什么?我们知道expr很广。
what is the best way to handle big integers in expr command. we know wide in expr.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从 Tcl 8.5 开始,整数现在是 Bignum(任意精度)。
如果您使用的是旧版本(您所说的是 8.4.x),您需要考虑需要使用这些数字来做什么。大多数标准命令不接受 Bignum,因为当时它还没有被添加到核心中。但是,如果您只是用它们做数学,您可能需要看看
最后,值得搜索 Tclers Wiki 其他选项。
As of Tcl 8.5, integers are now Bignums (arbitrary precision)
If you're using an older version (which you've said you are, 8.4.x), you'll need to consider what you need to use the numbers for. Most of the standard commands won't accept Bignums, since it hadn't been added to the core at that time. However, if you're just doing math with them, you might want to take a look at
Lastly, it's worth searching the Tclers Wiki for other options.