int16, int32, int64等类型说明

Int16  相当于 short  占2个字节   -32768 ~ 32767

Int32  相当于 int      占4个字节   -2147483648 ~ 2147483647

Int64  相当于 long   占8个字节   -9223372036854775808 ~ 9223372036854775807

Byte  相当于  byte   0 ~ 255

转载自: https://blog.csdn.net/wu9797/article/details/81331281

原文地址:https://www.cnblogs.com/LagoOrLY/p/10307370.html