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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。