📜  C++中的ios操纵器noboolapha()函数

📅  最后修改于: 2021-05-30 11:32:27             🧑  作者: Mango

C++中的流操纵器noboolalpha()方法用于获取指定str流的boolapha格式标志的整数值。

句法:

ios_base& noboolalpha (ios_base& str)

参数:此方法接受str作为参数,这是为其获取格式标志的流。

返回值:该方法返回带有noboolalpha格式标志的流str。

范例1:

// C++ code to demonstrate
// the working of noboolalpha() function
  
#include 
  
using namespace std;
  
int main()
{
  
    // Initializing the boolean flag
    bool flag = true;
  
    // Using noboolalpha()
    cout << "noboolalpha flag: "
         << noboolalpha << flag << endl;
  
    return 0;
}
输出:
noboolalpha flag: 1

范例2:

// C++ code to demonstrate
// the working of noboolalpha() function
  
#include 
  
using namespace std;
  
int main()
{
  
    // Initializing the boolean flag
    bool flag = false;
  
    // Using noboolalpha()
    cout << "noboolalpha flag: "
         << noboolalpha << flag << endl;
  
    return 0;
}
输出:
noboolalpha flag: 0

参考: http://www.cplusplus.com/reference/ios/noboolalpha/

要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”