当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ iomanip resetiosflags()用法及代码示例


C++中iomaip库的resetiosflags()方法用于重置指定为此方法参数的ios库格式标志。

用法:

resetiosflags (ios_base::format_flag)

参数:此方法接受format_flag作为参数,这是要通过此方法重置的ios库格式标志。


返回值:此方法不返回任何内容。它仅充当流操纵器。

示例1:

// C++ code to demonstrate 
// the working of resetiosflags() function 
  
#include <iomanip> 
#include <ios> 
#include <iostream> 
  
using namespace std; 
  
int main() 
{ 
  
    // Initializing the integer 
    int num = 50; 
  
    cout << "Before reset: \n"
         << hex 
         << setiosflags(ios::showbase) 
         << num << endl; 
  
    // Using resetiosflags() 
    cout << "Resetting showbase flag"
         << " using resetiosflags: \n"
         << resetiosflags(ios::showbase) 
         << num << endl; 
  
    return 0; 
}
输出:
Before reset: 
0x32
Resetting showbase flag using resetiosflags: 
32

示例2:

// C++ code to demonstrate 
// the working of resetiosflags() function 
  
#include <iomanip> 
#include <ios> 
#include <iostream> 
  
using namespace std; 
  
int main() 
{ 
  
    // Initializing the integer 
    int num = 50; 
  
    cout << "Before reset: \n"
         << hex 
         << setiosflags(ios::showbase) 
         << num << endl; 
  
    // Using resetiosflags() 
    cout << "Resetting showbase and uppercase"
         << " flag using resetiosflags: \n"
         << resetiosflags(ios::showbase) 
         << num << endl; 
  
    return 0; 
}
输出:
Before reset: 
0x32
Resetting showbase and uppercase flag using resetiosflags: 
32

参考: http://www.cplusplus.com/reference/iomanip/resetiosflags/



相关用法


注:本文由纯净天空筛选整理自guptayashgupta53大神的英文原创作品 iomanip resetiosflags() function in C++ with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。