标签:架构 类型 bytes 内存 c++ 我的电脑 data 例子 and
数据类型所占的大小是由编译器和你电脑的架构共同决定的。
举个例子: 定义一个int x=0;
那么怎么去查看到底这个int型的x变量占用的内存大小呢。
c++中提供了sizeof这个函数。
我们可以打印sizeof(x)去验证,我的电脑上是占用4个bytes。
You may be surprised to find that the size of a given data type is dependent on the compiler and/or the computer architectureint!
标签:架构 类型 bytes 内存 c++ 我的电脑 data 例子 and
原文地址:http://www.cnblogs.com/qqtuywer/p/6844183.html