std::resetiosflags
定义于头文件 <iomanip>
|
||
/*unspecified*/ resetiosflags( std::ios_base::fmtflags mask ); |
||
用于表达式 out << resetiosflags(mask) 或 in >> resetiosflags(mask) 中时,清除流 out
或 in
中 mask
所指定的所有格式标志。
参数
mask | - | 要清除的标志位掩码 |
返回值
返回未指定类型的对象,使得若 str
是 std::basic_ostream<CharT, Traits> 或 std::basic_istream<CharT, Traits> 类型的流名称,则表达式 str << resetiosflags(mask) 或 str >> resetiosflags(mask) 表现为如同执行下列代码:
str.setf(std::ios_base::fmtflags(0), mask);
示例
运行此代码
#include <sstream> #include <iostream> #include <iomanip> 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
参阅
设置特定格式标志 ( std::ios_base 的公开成员函数) | |
设置指定的 ios_base 标志 (函数) |