ios_base::setf
指定されたフラグを設定します。
fmtflags setf(
fmtflags _Mask
);
fmtflags setf(
fmtflags _Mask,
fmtflags _Unset
);
パラメーター
_Mask
設定するフラグ。_Unset
該当するフラグ。
戻り値
前の書式指定フラグ
解説
一つ目のメンバー関数は、実質的に フラグ (_Mask を呼び出します。| _Flags) は (指定されたビットを設定する場合は、前の書式指定フラグを返します。 2 つ目のメンバー関数は、実質的に フラグ (_Mask**& fmtfl, flags & ~**_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