std::resetiosflags
来自 cppreference.com
定义在头文件 <iomanip> 中 |
||
/*unspecified*/ 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++ 标准。
DR | 应用于 | 已发布的行为 | 正确行为 |
---|---|---|---|
LWG 183 | C++98 | resetiosflags 只能与类型为 std::ostream 或 std::istream 的流一起使用 |
可与任何 字符流一起使用 |
[编辑] 另请参阅
设置特定的格式标志 ( std::ios_base 的公共成员函数) | |
设置指定的 ios_base 标志(函数) |