std::skipws, std::noskipws
定义于头文件 <ios>
|
||
std::ios_base& skipws( std::ios_base& str ); |
(1) | |
std::ios_base& noskipws( std::ios_base& str ); |
(2) | |
启用或禁用有格式输入函数所做的跳过前导空白符(默认启用)。在输出上无效果。
跳过空白符由 std::basic_istream::sentry 的构造函数进行,它读取并舍弃由流所感染的 locale 的 std::ctype 平面分类为空白符的字符。
这是一个 I/O 操纵符,可用如 out << std::noskipws 的表达式对任何 std::basic_ostream 类型的 out
或用如 in >> std::noskipws 的表达式对任何 std::basic_istream 类型的 in
调用。
参数
str | - | 到 I/O 流的引用 |
返回值
str
(到操纵后的流的引用)
示例
运行此代码
#include <iostream> #include <sstream> int main() { char c1, c2, c3; std::istringstream("a b c") >> c1 >> c2 >> c3; std::cout << "Default behavior: c1 = " << c1 << " c2 = " << c2 << " c3 = " << c3 << '\n'; std::istringstream("a b c") >> std::noskipws >> c1 >> c2 >> c3; std::cout << "noskipws behavior: c1 = " << c1 << " c2 = " << c2 << " c3 = " << c3 << '\n'; }
输出:
Default behavior: c1 = a c2 = b c3 = c noskipws behavior: c1 = a c2 = c3 = b
参阅
清除指定的 ios_base 标志 (函数) | |
设置指定的 ios_base 标志 (函数) | |
消耗空白符 (函数模板) |