當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ iomanip setiosflags()用法及代碼示例


C++中iomaip庫的()方法用於設置指定為此方法的參數的ios庫格式標誌。

用法:

setiosflags (ios_base::format_flag)

參數:此方法接受format_flag作為參數,這是要通過此方法設置的ios庫格式標誌。


返回值:此方法不返回任何內容。它僅充當流操縱器。

示例1:

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

示例2:

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

參考: http://www.cplusplus.com/reference/iomanip/setiosflags/



相關用法


注:本文由純淨天空篩選整理自guptayashgupta53大神的英文原創作品 iomanip setiosflags() function in C++ with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。