Int16 意思是16位整數(16bit integer),相當於short 占2個字節 -32768 ~ 32767
Int32 意思是32位整數(32bit integer), 相當於 int 占4個字節 -2147483648 ~ 2147483647
Int64 意思是64位整數(64bit interger), 相當於 long long 占8個字節 -9223372036854775808 ~ 9223372036854775807
Byte 相當於byte(unsigned char) 0 ~ 255
WORD 等於 unsigned short 0 ~ 65535
本文轉載自:https://blog.csdn.net/wu9797/article/details/81331281