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

📅  最后修改于: 2021-05-30 17:23:48             🧑  作者: Mango

C++中的流操纵器uppercase()方法用于为指定的str流设置大写格式标志。此标志使输出操作使用大写字母而不是小写字母。

句法:

ios_base& uppercase (ios_base& str)

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

返回值:该方法返回设置了大写格式标志的流str。

范例1:

// C++ code to demonstrate
// the working of uppercase() function
  
#include 
#include 
  
using namespace std;
  
int main()
{
  
    // Initializing the int
    int n = 20;
  
    // Using uppercase()
    cout << "uppercase flag: "
         << showbase << oct
         << uppercase
         << n << endl;
  
    return 0;
}
输出:
uppercase flag: 024

范例2:

// C++ code to demonstrate
// the working of uppercase() function
  
#include 
  
using namespace std;
  
int main()
{
  
    // Initializing the int
    int n = 20;
  
    // Using uppercase()
    cout << "uppercase flag: "
         << showbase << hex
         << uppercase
         << n << endl;
  
    return 0;
}
输出:
uppercase flag: 0X14

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

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