Udostępnij za pośrednictwem


char_traits::eof

Zwraca znak końca z pliku (EOF).

static int_type eof();

Wartość zwracana

Znak EOF.

Uwagi

Wartość, która reprezentuje koniec pliku (takie jak EOF lub WEOF).

Ta wartość nie musi odpowiadać na prawidłowy stany standard C++ char_type wartości.Kompilator Visual C++ wymusza to ograniczenie typu char, ale nie dla typu wchar_t.Poniższy przykład demonstruje to.

Przykład

// char_traits_eof.cpp
// compile with: /EHsc
#include <string>
#include <iostream>

int main()
{
    using namespace std;

    char_traits<char>::char_type ch1 = 'x';
    char_traits<char>::int_type int1;
    int1 = char_traits<char>::to_int_type(ch1);
    cout << "char_type ch1 is '" << ch1 << "' and corresponds to int_type "
         << int1 << "." << endl << endl;

    char_traits<char>::int_type int2 = char_traits<char>::eof();
    cout << "The eof marker for char_traits<char> is: " << int2 << endl;

    char_traits<wchar_t>::int_type int3 = char_traits<wchar_t>::eof();
    cout << "The eof marker for char_traits<wchar_t> is: " << int3 << endl;
}
  
  

Wymagania

Nagłówek: <string>

Obszar nazw: std

Zobacz też

Informacje

char_traits Struct