Biblioteca C ++ basic_ios - tellg

Descrição

É usado para obter a posição na sequência de entrada.

Declaração

A seguir está a declaração para std :: basic_istream :: tellg.

pos_type tellg();

Parâmetros

Nenhum

Valor de retorno

Retorna a posição atual no fluxo.

Exceções

Basic guarantee - se uma exceção for lançada, o objeto está em um estado válido.

Corridas de dados

Modifica o objeto stream.

Exemplo

No exemplo abaixo para std :: basic_istream :: tellg.

#include <iostream>     
#include <fstream>      

int main () {
   std::ifstream is ("test.txt", std::ifstream::binary);
   if (is) {
    
      is.seekg (0, is.end);
      int length = is.tellg();
      is.seekg (0, is.beg);
    
      char * buffer = new char [length];
    
      is.read (buffer,length);
      is.close();

      std::cout.write (buffer,length);

      delete[] buffer;
   }
   return 0;
}