ios_base::setf
指定したフラグを設定します。
fmtflags setf(
fmtflags _Mask
);
fmtflags setf(
fmtflags _Mask,
fmtflags _Unset
);
パラメーター
_Mask
対応するフラグ。_Unset
該当するフラグ。
戻り値
前の書式指定フラグ
解説
一つ目のメンバー関数は、フラグ (_Mask | _Flags) を呼び出し (セットによって選択されたビット) がその前の書式指定フラグを返します。2 番目のメンバー関数は、flags (_Mask**&fmtfl, flags;AMP_~**_Maskマスク () の下の置換によって選択されたビット) を呼び出し、前の書式指定フラグを返します。
使用例
// ios_base_setf.cpp
// compile with: /EHsc
#include <iostream>
int main( )
{
using namespace std;
int i = 10;
cout << i << endl;
cout.unsetf( ios_base::dec );
cout.setf( ios_base::hex );
cout << i << endl;
cout.setf( ios_base::dec );
cout << i << endl;
cout.setf( ios_base::hex, ios_base::dec );
cout << i << endl;
}
出力
10
a
10
a
必要条件
ヘッダー: <ios>
名前空間: std