共用方式為


ios_base::flags

設定或傳回目前旗標設定為。

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

參數

  • fmtfl
    fmtflags 設定。

傳回值

上一個或目前 fmtflags 設定。

備註

提供旗標清單參閱 ios_base::fmtflags

第 10% 成員函式傳回儲存的格式旗標。 第二 + 成成員函式在格式旗標儲存 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

iostream 程式設計

iostreams 慣例