std::resetiosflags
来自 cppreference.cn
定义于头文件 <iomanip> |
||
/*未指定*/ resetiosflags( std::ios_base::fmtflags mask ); |
||
当在表达式 out << resetiosflags(mask) 或 in >> resetiosflags(mask) 中使用时,根据 mask 指定清除流 out 或 in 的所有格式标志。
目录 |
[编辑] 参数
mask | - | 要清除的标志的位掩码 |
[编辑] 返回值
一个未指定类型的对象,使得
- 若 out 是类型 std::basic_ostream<CharT, Traits> 的对象,则表达式 out << resetiosflags(mask)
- 具有类型 std::basic_ostream<CharT, Traits>&
- 值为 out
- 行为如同调用 f(out, mask)
- 若 in 是类型 std::basic_istream<CharT, Traits> 的对象,则表达式 in >> resetiosflags(mask)
- 具有类型 std::basic_istream<CharT, Traits>&
- 值为 in
- 行为如同调用 f(in, mask)
其中函数 f 定义为
void f(std::ios_base& str, std::ios_base::fmtflags mask) { // reset specified flags str.setf(ios_base::fmtflags(0), mask); }
[编辑] 示例
运行此代码
#include <iomanip> #include <iostream> #include <sstream> int main() { std::istringstream in("10 010 10 010 10 010"); int n1, n2; in >> std::oct >> n1 >> n2; std::cout << "Parsing \"10 010\" with std::oct gives: " << n1 << ' ' << n2 << '\n'; in >> std::dec >> n1 >> n2; std::cout << "Parsing \"10 010\" with std::dec gives: " << n1 << ' ' << n2 << '\n'; in >> std::resetiosflags(std::ios_base::basefield) >> n1 >> n2; std::cout << "Parsing \"10 010\" with autodetect gives: " << n1 << ' ' << n2 << '\n'; }
输出
Parsing "10 010" with std::oct gives: 8 8 Parsing "10 010" with std::dec gives: 10 10 Parsing "10 010" with autodetect gives: 10 8
[编辑] 缺陷报告
下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。
缺陷报告 | 应用于 | 发布时的行为 | 正确的行为 |
---|---|---|---|
LWG 183 | C++98 | resetiosflags 只能用于类型为 std::ostream 或 std::istream 的流 |
可用于任何 字符流 |
[编辑] 参阅
设置特定格式标志 ( std::ios_base 的公共成员函数) | |
设置指定的 ios_base 标志(函数) |