利用sizeof 查看每一個資料型態當中 所佔的記憶體空間位置是多少- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
-
- //sizeof() =>取得該型別所佔的記憶體空間
-
- /* int => 4Byte
- string => 4Byte
- char => 中文 4Byte 英文 1Byte
- float => 4Byte
- Double => 8Byte*/
-
- cout << "int :" << sizeof(int) << endl;
- cout << "string :" << sizeof(string) << endl;
- cout << "char :" << sizeof(char) << endl;
- cout << "float :" << sizeof(float) << endl;
- cout << "double :" << sizeof(double) << endl;
-
-
- system("pause");
- return 0;
- }
複製代碼 |