char_traits::eof

返回文件结尾(EOF)字符。

static int_type eof();

返回值

EOF字符。

备注

表示文件结尾的值(例如 EOFWEOF)。

C++标准状态此值不能对应于一个有效的 char_type 值。 Visual C++编译器强制执行此约束类型的 char,但是,不类型的 wchar_t。 下面的示例阐释了这一点。

示例

// 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;
}
  
  

要求

标头: <string>

命名空间: std

请参见

参考

char_traits Struct