次の方法で共有


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(ja-jp,VS.110).gif出力

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

必要条件

ヘッダー: <ios>

名前空間: std

参照

関連項目

fpos Class

入出力ストリームのプログラミング

入出力ストリームの規則