std::basic_string::resize

来自cppreference.com
< cpp‎ | string‎ | basic string

 
 
 
std::basic_string
 
void resize( size_type count );
(1)
void resize( size_type count, CharT ch );
(2)
将字符串包含count人物.
原文:
Resizes the string to contain count characters.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
如果电流的大小小于count,其他字符追加.
原文:
If the current size is less than count, additional characters are appended.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
如果电流的大小大于count,该字符串是它的第一个count元素.
原文:
If the current size is greater than count, the string is reduced to its first count elements.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
第一个版本,初始化新的字符CharT(),第二个版本初始化新的字符ch.
原文:
The first version initializes new characters to CharT(), the second version initializes new characters to ch.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

目录

[编辑] 参数

count -
新的字符串的长度
原文:
new size of the string
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
ch -
字符初始化新的字符
原文:
character to initialize the new characters with
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 返回值

(无)
原文:
(none)
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 复杂度

线性的字符串的大小
原文:
linear in the size of the string
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 另请参阅

返回字符数量
(公开成员函数) [edit]