C++ 字符串库 - resize



描述

它将字符串的大小调整为 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 
string.htm
广告