fpos::operator!=

测试不相等的文件位置指示符。

bool operator!=(
    const fpos<Statetype>& _Right
) const;

参数

  • _Right
    的文件位置指示符比较的。

返回值

true,如果文件位置指示符不相等,否则 false

备注

成员函数返回 !(*this == _Right)。

示例

// fpos_op_neq.cpp
// compile with: /EHsc
#include <fstream>
#include <iostream>

int main( )
{
   using namespace std;

   fpos<int> pos1, pos2;
   ifstream file;
   char c;

   // Compare two fpos object
   if ( pos1 != pos2 )
      cout << "File position pos1 and pos2 are not equal" << endl;
   else
      cout << "File position pos1 and pos2 are equal" << endl;

   file.open( "fpos_op_neq.txt" );
   file.seekg( 0 );   // Goes to a zero-based position in the file
   pos1 = file.tellg( );
   file.get( c);
   cout << c << endl;

   // Increment pos1
   pos1 += 1;
   file.get( c );
   cout << c << endl;

   pos1 = file.tellg( ) - fpos<int>( 2);
   file.seekg( pos1 );
   file.get( c );
   cout << c << endl;

   // Increment pos1
   pos1 = pos1 + fpos<int>( 1 );
   file.get(c);
   cout << c << endl;

   pos1 -= fpos<int>( 2 );
   file.seekg( pos1 );
   file.get( c );
   cout << c << endl;

   file.close( );
}

输入:fpos_op_neq.txt

987654321

2zxhd58d.collapse_all(zh-cn,VS.110).gifOutput

File position pos1 and pos2 are equal
9
8
9
8
8

要求

标头: <ios>

命名空间: std

请参见

参考

fpos Class

iostream编程

(mfc)约定