u8,,表示unsigned char,占8位
u16,表示unsigned short,占16位
u32,表示unsigned int ,占32位
u64,表示unsigned int,占64位
long,32位占4个字节,64位系统上,windows系统使用ILL,L始终占32位,unix 64系统L占64位。
编程时最好用sizeof测试长度。
参考:https://blog.csdn.net/sky_qing/article/details/11650497
u8,,表示unsigned char,占8位
u16,表示unsigned short,占16位
u32,表示unsigned int ,占32位
u64,表示unsigned int,占64位
long,32位占4个字节,64位系统上,windows系统使用ILL,L始终占32位,unix 64系统L占64位。
编程时最好用sizeof测试长度。
参考:https://blog.csdn.net/sky_qing/article/details/11650497