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


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


C++中iomaip库的setbase()方法用于基于指定为该方法参数的参数来设置ios库基域标志。

用法:

setbase (int base)

参数:此方法接受base作为参数,它是要设置底数所对应的整数参数。 10代表dec,16代表十六进制,8代表oct,其他任何值代表0(复位)。


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

示例1:

// C++ code to demonstrate 
// the working of setbase() function 
  
#include <iomanip> 
#include <ios> 
#include <iostream> 
  
using namespace std; 
  
int main() 
{ 
  
    // Initializing the integer 
    int num = 50; 
  
    cout << "Before set: \n"
         << num << endl; 
  
    // Using setbase() 
    cout << "Setting base to hex"
         << " using setbase: \n"
         << setbase(16) 
         << num << endl; 
  
    return 0; 
}
输出:
Before set: 
50
Setting base to hex using setbase: 
32

示例2:

// C++ code to demonstrate 
// the working of setbase() function 
  
#include <iomanip> 
#include <ios> 
#include <iostream> 
  
using namespace std; 
  
int main() 
{ 
  
    // Initializing the integer 
    int num = 50; 
  
    cout << "Before set: \n"
         << num << endl; 
  
    // Using setbase() 
    cout << "Setting base to oct"
         << " using setbase: \n"
         << setbase(8) 
         << num << endl; 
  
    return 0; 
}
输出:
Before set: 
50
Setting base to oct using setbase: 
62

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



相关用法


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