int在64位操作系统中占多少位?

 

仍然是32位。

曾经是这样的:16位操作系统中,int 占16位;在32位操作系统中,int 占32位。但是现在人们已经习惯了 int 占32位,因此在64位操作系统中,int 仍为32位。64位整型用 long long 或者 __int64
原文地址:https://www.cnblogs.com/lvdongjie/p/6553742.html