C++中iomaip庫的()方法用於設置指定為此方法的參數的ios庫格式標誌。
用法:
setiosflags (ios_base::format_flag)
參數:此方法接受format_flag作為參數,這是要通過此方法設置的ios庫格式標誌。
返回值:此方法不返回任何內容。它僅充當流操縱器。
示例1:
// C++ code to demonstrate
// the working of setiosflags() function
#include <iomanip>
#include <ios>
#include <iostream>
using namespace std;
int main()
{
// Initializing the integer
int num = 50;
// Using setiosflags()
cout << "Setting showbase flag "
<< "using setiosflags: \n"
<< hex
<< setiosflags(ios::showbase)
<< num << endl;
return 0;
}
輸出:
Setting showbase flag using setiosflags: 0x32
示例2:
// C++ code to demonstrate
// the working of setiosflags() function
#include <iomanip>
#include <ios>
#include <iostream>
using namespace std;
int main()
{
// Initializing the integer
int num = 50;
// Using setiosflags()
cout << "Setting showbase and uppercase"
<< " flag using setiosflags: \n"
<< hex
<< setiosflags(
ios::showbase
| ios::uppercase)
<< num << endl;
return 0;
}
輸出:
Setting showbase and uppercase flag using setiosflags: 0X32
參考: http://www.cplusplus.com/reference/iomanip/setiosflags/
相關用法
- C++ iomanip setfill()用法及代碼示例
- C++ iomanip setw()用法及代碼示例
- C++ iomanip setpricision()用法及代碼示例
- C++ iomanip setbase()用法及代碼示例
- C++ iomanip resetiosflags()用法及代碼示例
- C++ ios bad()用法及代碼示例
- C++ ios eof()用法及代碼示例
- C++ wcsspn()用法及代碼示例
- C++ wcscmp()用法及代碼示例
- C++ norm()用法及代碼示例
- C++ fill()用法及代碼示例
- C++ wcscpy()用法及代碼示例
- C++ conj()用法及代碼示例
- C++ ios clear()用法及代碼示例
- C++ ios rdstate()用法及代碼示例
注:本文由純淨天空篩選整理自guptayashgupta53大神的英文原創作品 iomanip setiosflags() function in C++ with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。