C++中iomaip库的setfill()方法用于基于指定为此方法参数的字符来设置ios库填充字符。
句法:
setfill(char c)
参数:此方法接受c作为参数,它是要设置填充的对应字符参数。
返回值:此方法不返回任何内容。它仅充当流操纵器。
范例1:
// C++ code to demonstrate
// the working of setfill() function
#include
#include
#include
using namespace std;
int main()
{
// Initializing the integer
int num = 50;
cout << "Before setting the fill char: \n"
<< setw(10);
cout << num << endl;
// Using setfill()
cout << "Setting the fill char"
<< " setfill to *: \n"
<< setfill('*')
<< setw(10);
cout << num << endl;
return 0;
}
输出:
Before setting the fill char:
50
Setting the fill char setfill to *:
********50
范例2:
// C++ code to demonstrate
// the working of setfill() function
#include
#include
#include
using namespace std;
int main()
{
// Initializing the integer
int num = 50;
cout << "Before setting the fill char: \n"
<< setw(10);
cout << num << endl;
cout << "Setting the fill"
<< " char setfill to $: \n"
<< setfill('$')
<< setw(10);
cout << num << endl;
return 0;
}
输出:
Before setting the fill char:
50
Setting the fill char setfill to $:
$$$$$$$$50
参考: http : //www.cplusplus.com/reference/iomanip/setfill/
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。