如何在 C# 中使用 Int64
问题很简单!在 C# 中如何表示 64 位 int?
The question is easy! How do you represent a 64 bit int in C#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
问题很简单!在 C# 中如何表示 64 位 int?
The question is easy! How do you represent a 64 bit int in C#?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
64位int很长
64 bit int is long
System.Int64 是 .net 类型,在 C# 中也称为 long
System.Int64 is the .net type, in C# it's also called long
有符号 64 位整数为
long
,无符号为ulong
。框架中对应的类型分别是
System.Int64
和System.UInt64
。例子:
A signed 64 bit integer is
long
, an unsigned isulong
.The corresponding types in the framwwork are
System.Int64
andSystem.UInt64
, respectively.Example:
通过使用long数据类型,或ulong表示无符号。
完整 C# 类型表
By using the long data type, or ulong for unsigned.
Table of Integral C# Types