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
#include
#include
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
#include
#include
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/
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。