// C# 中有四种整数类型 byte short int long byte bMax = byte.MaxValue; /// 255 最大值 byte bMin = byte.MinValue; /// 0 最小值 short sMax = short.MaxValue; // 32767 short sMin = short.MinValue; // -32767 int iMax = int.MaxValue; // 2147483647 int iMin = int.MinValue; // -2147483647 long lMax = long.MaxValue; // long lMin = long.MinValue; int i = 0; short s = 0; i = s; // i(大盒子) 可以接收 小盒子 s // s = i; // 相互赋值的时候 小盒子不能接收大盒子
标签:short,C#,MaxValue,long,MinValue,int,byte,整形,四种 From: https://www.cnblogs.com/zhulongxu/p/18030758