描述
它用于设置 str 流的 skipws 格式标志。当设置了skipws 格式标志时,会根据需要从流中读取和丢弃尽可能多的空白字符,直到之前找到非空白字符为止。这适用于在流上使用 operator>> 执行的每个格式化输入操作。
声明
以下是 std::skipws 函数的声明。
ios_base& skipws (ios_base& str);
参数
str− 格式标志受到影响的流对象。
返回值
它返回参数 str。
异常
Basic guarantee- 如果抛出异常,则 str 处于有效状态。
数据竞争
它修改了 str。对同一个流对象的并发访问可能会导致数据竞争。
示例
在下面的例子中解释了 std::skipws 函数。
#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
相关用法
- C++ ios showpos用法及代码示例
- C++ ios setstate()用法及代码示例
- C++ ios showbase用法及代码示例
- C++ ios showpoint用法及代码示例
- C++ ios eof()用法及代码示例
- C++ ios manipulators boolalpha()用法及代码示例
- C++ ios Scientific用法及代码示例
- C++ ios manipulators left()用法及代码示例
- C++ ios fixed用法及代码示例
- C++ ios manipulators dec()用法及代码示例
- C++ ios manipulators uppercase()用法及代码示例
- C++ ios noshowbase用法及代码示例
- C++ ios manipulators hex()用法及代码示例
- C++ ios manipulators unitbuf()用法及代码示例
- C++ ios manipulators nouppercase()用法及代码示例
- C++ ios manipulators skipws()用法及代码示例
- C++ ios dec用法及代码示例
- C++ ios Internal用法及代码示例
- C++ ios manipulators internal()用法及代码示例
- C++ ios hex用法及代码示例
注:本文由纯净天空筛选整理自 C++ ios Library - Skipws Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。