次の方法で共有


ios_base::flags

現在のフラグの設定を設定するか、返します。

fmtflags flags( ) const; 
fmtflags flags(
   fmtflags fmtfl
);

パラメーター

  • fmtfl
    fmtflags の新しい配置。

戻り値

fmtflags の前または現在の配置。

解説

フラグの一覧については、ios_base::fmtflags を参照してください。

一つ目のメンバー関数は、格納されている形式フラグを返します。形式の 2 番目のメンバー関数は、前 fmtfl ストアに格納されている値にフラグを設定して返します。

使用例

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

int main ( ) 
{
   using namespace std;
   cout << cout.flags( ) << endl;
   cout.flags( ios::dec | ios::boolalpha );
   cout << cout.flags( );
}
  

必要条件

ヘッダー: <ios>

名前空間: std

参照

関連項目

ios_base Class

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

入出力ストリームの規則