ios_base::setf
設定指定的旗標。
fmtflags setf(
fmtflags _Mask
);
fmtflags setf(
fmtflags _Mask,
fmtflags _Unset
);
參數
_Mask
開啟的旗標。_Unset
關閉的旗標。
傳回值
先前的格式旗標
備註
第 10% 成員函式有效地呼叫 旗標。(_Mask|_Flags) (設定選取的位元) 然後傳回先前格式旗標。 第二 + 成成員函式有效地呼叫 flags_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;
}
Output
10
a
10
a
需求
標題: <ios>
命名空間: std