C++ ios 库 - Noshowbase 函数
描述
It 用于清除 str 流的 showbase 格式标志。 如果未设置 showbase 格式标志,则将数值插入流中,而不用任何数字基前缀作为前缀(即 0x 表示十六进制值,0 表示八进制值,没有前缀表示十进制值)。
声明
以下是 std::noshowbase 函数的声明。
ios_base& noshowbase (ios_base& str);
参数
str − 其格式标志受影响的流对象。
返回值
它返回参数 str。
异常
Basic guarantee − 如果抛出异常,则 str 处于有效状态。
数据竞争
它修改 str。 对同一流对象的并发访问可能会导致数据竞争。
示例
在下面的示例中解释了 std::noshowbase 函数。
#include <iostream> int main () { int n = 20; std::cout << std::hex << std::showbase << n << '\n'; std::cout << std::hex << std::noshowbase << n << '\n'; return 0; }
让我们编译并运行上面的程序,这将产生以下结果 −
0x14 14