基本数据类型的大小(64bit)
cout << sizeof(char) << endl; // 输出:1
cout << sizeof(short) << endl; // 输出:2
cout << sizeof(int) << endl; // 输出:4
cout << sizeof(long) << endl; // 输出:4
cout << sizeof(long long) << endl; // 输出:8,64位整型
cout << sizeof(float) << endl; // 输出:4
cout << sizeof(double) << endl; // 输出:8
cout << sizeof(long double) << endl;// 输出:8,精度高于double