C++ ios 库 - Noshowpos 函数



描述

它用于设置 str 流的 showpos 格式标志。当设置 showpos 格式标志时,一个加号 (+) 会出现在插入到流中的每个非负数值(包括零)之前。

声明

以下是 std::showpos 函数的声明。

ios_base& showpos (ios_base& str);

参数

str − 受格式标志影响的流对象。

返回值

它返回参数 str。

异常

基本保证 − 如果抛出异常,则 str 处于有效状态。

数据竞争

它修改了 str。对同一流对象的并发访问可能会导致数据竞争。

示例

下面的示例说明了 std::showpos 函数。

#include <iostream>

int main () {
   int p = 1;
   int z = 0;
   int n = -1;
   std::cout << std::showpos   << p << '\t' << z << '\t' << n << '\n';
   std::cout << std::noshowpos << p << '\t' << z << '\t' << n << '\n';
   return 0;
}

让我们编译并运行以上程序,这将产生以下结果:

+1      +0      -1
1       0       -1
ios.htm
广告