C ++ String Library - reserva

Descrição

Solicita uma mudança de capacidade.

Declaração

A seguir está a declaração para std :: string :: reserve.

void reserve (size_t n = 0);

C ++ 11

void reserve (size_t n = 0);

Parâmetros

n - Comprimento planejado para a corda.

Valor de retorno

Nenhum

Exceções

se uma exceção for lançada, não haverá mudanças na string.

Exemplo

No exemplo abaixo para 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;
}