如何在 tcl 中处理大整数(64 位)?

发布于 2024-08-06 18:12:32 字数 42 浏览 3 评论 0原文

在 expr 命令中处理大整数的最佳方法是什么?我们知道expr很广。

what is the best way to handle big integers in expr command. we know wide in expr.

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

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

发布评论

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

评论(1

南街九尾狐 2024-08-13 18:12:32

从 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.

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