我们可以使用 sizeof 运算符 来查找 变量 的大小。
sizeof(dataType);
示例:查找变量的大小
#include <iostream>
using namespace std;
int main()
{
cout << "Size of char: " << sizeof(char) << " byte" << endl;
cout << "Size of int: " << sizeof(int) << " bytes" << endl;
cout << "Size of float: " << sizeof(float) << " bytes" << endl;
cout << "Size of double: " << sizeof(double) << " bytes" << endl;
return 0;
}
输出
Size of char: 1 byte Size of int: 4 bytes Size of float: 4 bytes Size of double: 8 bytes
注意:如果您使用的是旧计算机,结果可能会有所不同。
另请阅读