C# 中的 BigInteger 类

2023年 8月 27日 44.3k 0

C# 中的 BigInteger 类

在 C# 中,大整数位于 System.Numerics.BigInteger 中。

语法

BigInteger 的语法 -

[SerializableAttribute]
public struct BigInteger : IFormattable, IComparable, IComparable, IEquatable

登录后复制

让我们看一个示例代码片段 -

BigInteger num = BigInteger.Multiply(Int64.MaxValue, Int64.MaxValue);

登录后复制

您可以像这样创建 BigInteger -

BigInteger num = new BigInteger(double.MaxValue);

登录后复制

以下是它的一些构造函数 -

S.No.

构造函数及说明

1

BigInteger(Byte[ ])

使用字节数组中的值的 BigInteger 结构的新实例。 p>

2

td>

BigInteger(Decimal)

使用 Decimal 值的 BigInteger 结构的新实例。

            3

BigInteger(Double)

使用双精度浮点值的 BigInteger 结构的新实例

值。

           4

BigInteger(Int32)

使用 32 位有符号整数值的 BigInteger 结构的新实例。

以上就是C# 中的 BigInteger 类的详细内容,更多请关注每日运维网(www.mryunwei.com)其它相关文章!

相关文章

JavaScript2024新功能:Object.groupBy、正则表达式v标志
PHP trim 函数对多字节字符的使用和限制
新函数 json_validate() 、randomizer 类扩展…20 个PHP 8.3 新特性全面解析
使用HTMX为WordPress增效:如何在不使用复杂框架的情况下增强平台功能
为React 19做准备:WordPress 6.6用户指南
如何删除WordPress中的所有评论

发布评论