C++ 字符串库 - 保留


描述

它要求改变容量。

宣言

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

void reserve (size_t n = 0);

C++11

void reserve (size_t n = 0);

参数

n - 字符串的计划长度。

返回值

没有任何

例外情况

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

例子

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

#include <iostream>
#include <fstream>
#include <string>

int main () {
   std::string str;

   std::ifstream file ("test.txt",std::ios::in|std::ios::ate);
   if (file) {
      std::ifstream::streampos filesize = file.tellg();
      str.reserve(filesize);

      file.seekg(0);
      while (!file.eof()) {
         str += file.get();
      }
   std::cout << str;
   }
   return 0;
}
字符串.htm