C++ ios 库 - noskipws 函数



描述

它用于清除 str 流的 skipws 格式标志。当未设置 skipws 格式标志时,流上的所有操作都将初始空格字符视为要提取的有效内容。

声明

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

ios_base& noskipws (ios_base& str);

参数

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

返回值

它返回参数 str。

异常

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

数据竞争

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

示例

以下示例说明了 std::noskipws 函数。

#include <iostream>
#include <sstream>

int main () {
   char a, b, c;

   std::istringstream iss ("  123");
   iss >> std::skipws >> a >> b >> c;
   std::cout << a << b << c << '\n';

   iss.seekg(0);
   iss >> std::noskipws >> a >> b >> c;
   std::cout << a << b << c << '\n';
   return 0;
}

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

123
  1
ios.htm
广告