C size t 和size type的區別

2021-07-27 19:35:17 字數 646 閱讀 3634

為了使自己的程式有很好的移植性,c++程式設計師應該盡量使用size_t和size_type而不是int, unsigned

size_t是全域性定義的型別;size_type是stl類中定義的型別屬性,用以儲存任意string和vector類物件的長度

string::size_type 制型別一般就是unsigned int, 但是不同機器環境長度可能不同 win32 和win64上長度差別;size_type一般也是unsigned int

使用的時候可以參考:

string::size_type a =123;

vectorsize_type b=234;

size_t b=456;

size_t 使用的時候標頭檔案需要 cstddef ;size_type 使用的時候需要string或者vector

sizeof(string::size_type)

sizeof(vector::size_type)

sizeof(vector::size_type)

sizeof(size_t)

上述長度均相等,長度為win32:4 win64:8

二者聯絡:在用下標訪問元素時,vector使用vector::size_type作為下標型別,而陣列下標的正確型別則是size_t

size type 和 size t 的區別

string st the expense of spirit n cout the size of 那麼size 這個函式返回的型別?一定要記住,絕對不是整形,而是 size type 型別的,所以千萬不要把 size 的返回值賦給乙個 int變數。那麼 size type 到底是一種什麼樣的型別...

size t,int和size type的區別

1 size t型別 size t型別定義在cstddef標頭檔案中,該檔案是c標準庫的標頭檔案stddef.h的c 版本。它是乙個與機器相關的unsigned型別,其大小足以保證儲存記憶體物件的大小。在vector,string和bitset的size操作返回值的型別都是size t型別。size...

c 中size type和size t的關係

size type 由string類型別和vector類型別定義的型別,用以儲存任意string物件或vector物件的長度,標準庫型別將size type定義為unsigned型別 string抽象意義是字串,size 的抽象意義是字串的尺寸,string size type抽象意義是尺寸單位型別...