std::basic_string::capacity
提供: cppreference.com
< cpp | string | basic string
size_type capacity() const; |
||
文字列が現在確保している空間の文字数を返します。
目次 |
[編集] 引数
(なし)
[編集] 戻り値
現在確保されている記憶域の容量。
[編集] 例外
(なし) | (C++11以前) |
noexcept 指定: noexcept |
(C++11およびそれ以降) |
[編集] 計算量
一定。
[編集] 例
Run this code
#include <iostream> #include <string> void show_capacity(std::string const& s) { std::cout << "'" << s << "' has capacity " << s.capacity() << ".\n"; } int main() { std::string s{"Exemplar"}; show_capacity(s); s += " is an example string."; show_capacity(s); }
出力例:
'Exemplar' has capacity 15. 'Exemplar is an example string.' has capacity 30.
[編集] 関連項目
文字数を返します (パブリックメンバ関数) | |
記憶域を予約します (パブリックメンバ関数) |