共用方式為


fpos::operator!=

測試比較檔案位置指示器。

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

參數

  • _Right
    檔案位置指示器比較的。

傳回值

true ,如果檔案位置指標不相等,否則 false

備註

成員函式傳回 !_Right(*this == )。

範例

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

Output

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

需求

標題: <ios>

命名空間: std

請參閱

參考

fpos 類別

iostream 程式設計

iostreams 慣例