
在 C# 中使用 BigInteger 处理大数字。要为 BigInteger 添加的程序集是 System。数值。
在 C# 中,大整数位于 System.Numerics.BigInteger 中。
BigInteger 的语法 -
[SerializableAttribute] public struct BigInteger : IFormattable, IComparable, IComparable<BigInteger>, IEquatable<BigInteger>
让我们看一个示例代码片段 -
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 类的详细内容,更多请关注php中文网其它相关文章!
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号