basic_ios::fill
テキスト ストリームが同程度にない場合に使用される文字を指定または返します。
char_type fill( ) const;
char_type fill(
char_type _Char
);
パラメーター
- _Char
データを読み込む文字として使用する文字。
戻り値
現在の塗りつぶし文字。
解説
一つ目のメンバー関数は、格納されている塗りつぶし文字を返します。2 番目のメンバー関数は全体で _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