Biblioteca C ++ String - rbegin

Descrição

Ele retorna o iterador reverso para o início reverso.

Declaração

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

reverse_iterator rbegin();
const_reverse_iterator rbegin() const;

C ++ 11

reverse_iterator rbegin() noexcept;
const_reverse_iterator rbegin() const noexcept;

Parâmetros

Nenhum

Valor de retorno

Ele retorna um iterador reverso para o início reverso da string.

Exceções

Nunca lance nenhuma exceção.

Exemplo

No exemplo abaixo para std :: string :: rbegin.

#include <iostream>
#include <string>

int main () {
   std::string str ("Tutorials Point...");
   for (std::string::reverse_iterator rit=str.rbegin(); rit!=str.rend(); ++rit)
      std::cout << *rit;
   return 0;
}

O exemplo de saída deve ser assim -

...tnioP slairotuT