std::ws
来自 cppreference.cn
定义于头文件 <istream> |
||
template< class CharT, class Traits > std::basic_istream<CharT, Traits>& ws( std::basic_istream<CharT, Traits>& is ); |
||
从输入流中丢弃前导空白符。
行为如同一个 UnformattedInputFunction,除了 is.gcount() 不被修改。在构造并检查哨兵对象后,从流中提取并丢弃字符,直到发生以下任一条件:
- 输入序列中出现文件结束条件(此时函数调用 setstate(eofbit) 但不设置
failbit
;如果调用ws
之前 is 上已设置eofbit
,则不适用此情况,此时哨兵对象的构造会设置failbit
)。
- 输入序列中下一个可用字符 c 不是空白符,这由 std::isspace(c, is.getloc()) 确定。非空白字符未被提取。
这是一个仅用于输入的 I/O 操作符,它可以与诸如 in >> std::ws 的表达式一起调用,其中 in 的类型为 std::basic_istream。
目录 |
[编辑] 参数
is | - | 输入流的引用 |
[编辑] 返回值
is(连续空白符提取后的流的引用)。
[编辑] 注意
如果在调用之前流上设置了 eofbit
,则哨兵对象的构造将设置 failbit
。
[编辑] 示例
运行此代码
#include <iomanip> #include <iostream> #include <istream> #include <sstream> #include <string> int main() { for (const char* str : {" #1 test", "\t #2 test", "#3 test"}) { std::string line; std::getline(std::istringstream{str}, line); std::cout << "getline returns:\t" << std::quoted(line) << '\n'; std::istringstream iss{str}; std::getline(iss >> std::ws, line); std::cout << "ws + getline returns:\t" << std::quoted(line) << '\n'; } }
输出
getline returns: " #1 test" ws + getline returns: "#1 test" getline returns: " #2 test" ws + getline returns: "#2 test" getline returns: "#3 test" ws + getline returns: "#3 test"
[编辑] 缺陷报告
下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。
缺陷报告 | 应用于 | 发布时的行为 | 正确的行为 |
---|---|---|---|
LWG 415 | C++98 | 调用 std::ws 可能不会构造哨兵对象(与其他输入函数不一致) |
需要构造 哨兵对象 |
[编辑] 参阅
提取并丢弃字符直到找到给定字符 ( std::basic_istream<CharT,Traits> 的公共成员函数) |