語法
capacity 函式:size_type capacity()
作用
返回當前vector在重新進行記憶體分配以前所能容納的元素數量。
string.capacity()
可以通過點語法來調用capacity這個函式。
Return Value
The size of the storage capacity currently allocated for thestring.
size_tis an unsigned integral type.
C++ 返回string分配的存儲容量。
跟size不同,它返回的是分配的容量的大小,並不是string裡面字元串的長度。