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


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


C++中iomaip库的setfill()方法用于基于指定为该方法参数的字符来设置ios库填充字符。

用法:

setfill(char c)

参数:此方法接受c作为参数,它是要设置填充的对应字符参数。


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

示例1:

// C++ code to demonstrate 
// the working of setfill() function 
  
#include <iomanip> 
#include <ios> 
#include <iostream> 
  
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 <iomanip> 
#include <ios> 
#include <iostream> 
  
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/



相关用法


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