命名空间
变体
操作

std::uppercase,std::nouppercase

来自 cppreference.com
< cpp‎ | io‎ | manip
 
 
 
输入/输出操作符
浮点数格式化
整数格式化
布尔值格式化
字段宽度和填充控制
其他格式化
uppercasenouppercase
空白处理
输出刷新
(C++20)  

状态标志操作
时间和货币 I/O
(C++11)
(C++11)
(C++11)
(C++11)
带引号的操作符
(C++14)
 
在头文件 <ios> 中定义
std::ios_base& uppercase( std::ios_base& str );
(1)
std::ios_base& nouppercase( std::ios_base& str );
(2)

在浮点数和十六进制整数输出中启用大写字符的使用。对输入没有影响。

1) 启用流 str 中的 uppercase 标志,就像通过调用 str.setf(std::ios_base::uppercase) 一样。
2) 禁用流 str 中的 uppercase 标志,就像通过调用 str.unsetf(std::ios_base::uppercase) 一样。

这是一个 I/O 操作符,它可以与表达式一起调用,例如对于类型为 std::basic_ostream 的任何 out,可以调用 out << std::uppercase,或者对于类型为 std::basic_istream 的任何 in,可以调用 in >> std::uppercase

内容

[编辑] 参数

str - 对 I/O 流的引用

[编辑] 返回值

str(操作后的流引用)。

[编辑] 示例

#include <iostream>
 
int main()
{
    std::cout << std::hex << std::showbase
              << "0x2a with uppercase: " << std::uppercase << 0x2a << '\n'
              << "0x2a with nouppercase: " << std::nouppercase << 0x2a << '\n'
              << "1e-10 with uppercase: " << std::uppercase << 1e-10 << '\n'
              << "1e-10 with nouppercase: " << std::nouppercase << 1e-10 << '\n';
}

输出

0x2a with uppercase: 0X2A
0x2a with nouppercase: 0x2a
1e-10 with uppercase: 1E-10
1e-10 with nouppercase: 1e-10

[编辑] 另请参见

清除指定的 ios_base 标志
(函数) [编辑]
设置指定的 ios_base 标志
(函数) [编辑]