C++ 字符串库 - reserve



描述

它请求更改容量。

声明

以下是 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;
}
string.htm
广告