命名空间
变体
操作

std::resetiosflags

来自 cppreference.com
< cpp‎ | io‎ | manip
 
 
 
输入/输出操纵符
浮点数格式
整数格式
布尔值格式
字段宽度和填充控制
其他格式
空白处理
输出刷新
(C++20)  

状态标志操作
resetiosflags
时间和货币 I/O
(C++11)
(C++11)
(C++11)
(C++11)
带引号的操纵符
(C++14)
 
定义在头文件 <iomanip>
/*unspecified*/ resetiosflags( std::ios_base::fmtflags mask );

当在表达式 out << resetiosflags(mask)in >> resetiosflags(mask) 中使用时,根据 mask 清除流 outin 的所有格式标志。

内容

[编辑] 参数

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::ostreamstd::istream 的流一起使用
可与任何
字符流一起使用

[编辑] 另请参阅

设置特定的格式标志
(std::ios_base 的公共成员函数) [编辑]
设置指定的 ios_base 标志
(函数) [编辑]