📜  带有示例的C++中的iomanip setiosflags()函数

📅  最后修改于: 2021-05-30 03:36:37             🧑  作者: Mango

C++中iomaip库()方法用于设置指定为此方法参数的ios库格式标志。

句法:

setiosflags (ios_base::format_flag)

参数:此方法接受format_flag作为参数,这是此方法要设置的ios库格式标志。

返回值:此方法不返回任何内容。它仅充当流操纵器。

范例1:

// C++ code to demonstrate
// the working of setiosflags() function
  
#include 
#include 
#include 
  
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 
#include 
#include 
  
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++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”