如何制作Int1024
如何在 C# 中声明 int1024?我也可以使用 VB 或 C++。
问候
贝赫鲁兹
how to declare int1024 in C#? i can use VB or C++ Too.
Regards
Behrooz
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 C# 中声明 int1024?我也可以使用 VB 或 C++。
问候
贝赫鲁兹
how to declare int1024 in C#? i can use VB or C++ Too.
Regards
Behrooz
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
请参阅此问题:C# 中的大整数
从该问题的答案:
See this question: Big integers in C#
From the answer to that question:
你指的是 1024 位整数吗?最好等到
BigInteger4.0
。在那之前,您可以对核心库做的最厚颜无耻的事情就是(ab)使用
decimal
,它的整数部分有96位。或者使用第 3 方 dll。And by that do you mean a 1024-bit integer? Better wait until
BigInteger
in 4.0. Until then, the cheekiest you can do with the core libraries is to (ab)usedecimal
, which has 96 bits for the integer part. Or use a 3rd-party dll.只是为了避免疑问:
Just for avoidance of doubt:
如果我理解正确的话,你需要一个 1024 位整数。
不幸的是.net 中没有内置的 1024 位整数类型。您必须为此类事情找到一个专门的库或自己编写一个。
有一篇关于大整数的文章 这里。
If I understand you correctly you want a 1024 bit integer.
Unfortunately there is no inbuilt 1024 bit integer type in .net. You would have to find a specialised library for that kind of thing or write one yourself.
There is an article about big integers here.