Biblioteca de String C ++ - push_back

Descrição

Ele anexa o caractere c ao final da string, aumentando seu comprimento em um.

Declaração

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

void push_back (char c);

C ++ 11

void push_back (char c);

C ++ 14

void push_back (char c);

Parâmetros

c - É um objeto de personagem.

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 :: push_back.

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

int main () {
   std::string str;
   std::ifstream file ("sample.txt",std::ios::in);
   if (file) {
      while (!file.eof()) str.push_back(file.get());
   }
   std::cout << str << '\n';
   return 0;
}