C++ 字符串库 - 调整大小


描述

它将字符串的大小调整为 n 个字符的长度。

宣言

以下是 std::string::resize 的声明。

void resize (size_t n);

C++11

void resize (size_t n, char c);

参数

  • n - 这是新的字符串长度。

  • c - 用于填充添加到字符串的新字符空间的字符。

返回值

没有任何

例外情况

如果抛出异常,则字符串不会发生任何变化。

例子

在下面的 std::string::resize 示例中。

#include <iostream>
#include <string>

int main () {
   std::string str ("Sairamkrishna Mammahe");
   std::cout << str << '\n';

   unsigned sz = str.size();

   str.resize (sz+2,'+');
   std::cout << str << '\n';

   str.resize (14);
   std::cout << str << '\n';
   return 0;
}

示例输出应该是这样的 -

Sairamkrishna Mammahe
Sairamkrishna Mammahe++
Sairamkrishna 
字符串.htm