📅  最后修改于: 2020-09-25 06:35:06             🧑  作者: Mango
为了找到变量的大小,使用sizeof
运算符 。
sizeof(dataType);
#include
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
注意:如果使用旧计算机,可能会得到不同的结果。