如何声明C#的Int64类型
答案:2 悬赏:0 手机版
解决时间 2021-02-09 22:54
- 提问者网友:人生佛魔见
- 2021-02-09 15:56
如何声明C#的Int64类型
最佳答案
- 五星知识达人网友:神也偏爱
- 2021-02-09 16:09
// 64位有符号位
Int64 i64 = Int64.MaxValue;
// 64位有符号位等价写法
long i64_two = Int64.MaxValue;
// 64位无符号位
UInt64 ui64 = UInt64.MaxValue;
// 64位无符号位等价写法
ulong ui64_two = UInt64.MaxValue;
Int64 i64 = Int64.MaxValue;
// 64位有符号位等价写法
long i64_two = Int64.MaxValue;
// 64位无符号位
UInt64 ui64 = UInt64.MaxValue;
// 64位无符号位等价写法
ulong ui64_two = UInt64.MaxValue;
全部回答
- 1楼网友:山河有幸埋战骨
- 2021-02-09 17:08
声明c#的int64类型: int16 -> short int32 -> int int64 -> long
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯