📜  C++程序在系统中查找int,float,double和char的大小

📅  最后修改于: 2020-09-25 06:35:06             🧑  作者: Mango

他的程序声明了4个类型为int,float,double和char的变量。然后,使用sizeof 运算符评估每个变量的大小。

为了找到变量的大小,使用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

注意:如果使用旧计算机,可能会得到不同的结果。