zl程序教程

您现在的位置是:首页 >  其它

当前栏目

int是什么_int a[4][4]

什么 int
2023-06-13 09:13:01 时间

大家好,又见面了,我是你们的朋友全栈

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://javaforall.cn/170529.html原文链接:https://javaforall.cn