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