用于查找系统中 int、float、double 和 char 大小的 C++ 程序
该程序声明了 4 个类型为 int、float、double 和 char 的变量。然后,使用 sizeof 运算符评估每个变量的大小。
要获取变量的大小,使用 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 byte
Size of float: 4 byte
Size of double: 8 byte
**注意:**如果您使用的是旧计算机,可能会得到不同的结果。