【c++】size_t 和 size_type的區別
阿新 • • 發佈:2018-12-22
為了使自己的程式有很好的移植性,c++程式設計師應該儘量使用size_t和size_type而不是int, unsigned
1. size_t是全域性定義的型別;size_type是STL類中定義的型別屬性,用以儲存任意string和vector類物件的長度
2. string::size_type 制型別一般就是unsigned int, 但是不同機器環境長度可能不同 win32 和win64上長度差別;size_type一般也是unsigned int
3. 使用的時候可以參考:
string::size_type a =123;
vector<int>::size_type b=234;
size_t b=456;
4. size_t 使用的時候標頭檔案需要 <cstddef> ;size_type 使用的時候需要<string>或者<vector>
//在c++中沒inlcude<cstddef>好像也能用。cstddef中4個定義:size_t、NULL、ptrdiff_t、offsetof,
5. sizeof(string::size_type)
sizeof(vector<bool>::size_type)
sizeof(vector<char>::size_type)
sizeof(size_t)
上述長度均相等,長度為win32:4 win64:8
6. 二者聯絡:在用下標訪問元素時,vector使用vector::size_type作為下標型別,而陣列下標的正確型別則是size_t