共用方式為


basic_ios::fill

指定或傳回要使用的字元,則文字不是同寬於資料流時。

char_type fill( ) const;
char_type fill(
   char_type _Char
);

參數

  • _Char
    要做為填補字元的字元。

傳回值

目前的填補字元。

備註

第10%成員函式傳回儲存的填補字元。 第二+成成員函式在填補字元儲存 _Char 並傳回其先前儲存的值。

範例

// basic_ios_fill.cpp
// compile with: /EHsc
#include <iostream>
#include <iomanip>

int main( ) 
{
   using namespace std;

   cout << setw( 5 ) << 'a' << endl;

   cout.fill( 'x' );
   cout << setw( 5 ) << 'a' << endl;

   cout << cout.fill( ) << endl;
}
  

需求

標題: <ios>

命名空間: std

請參閱

參考

basic_ios Class

iostream 程式設計

iostreams 慣例