C# 中的 BigInteger 类

王林
发布: 2023-08-25 18:25:02
转载
1602 人浏览过

C# 中的 BigInteger 类

在 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中文网其他相关文章!

来源:tutorialspoint.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!