ios_base::width
出力ストリームの長さを設定します。
streamsize width( ) const;
streamsize width(
streamsize _Wide
);
パラメーター
- _Wide
出力ストリームの必要なサイズ。
戻り値
現在の幅の設定。
解説
一つ目のメンバー関数は、格納されているフィールドの幅を返します。2 番目のメンバー関数は、フィールドの幅に _Wide を格納し、以前に格納されている値を返します。
使用例
// ios_base_width.cpp
// compile with: /EHsc
#include <iostream>
int main( ) {
using namespace std;
cout.width( 20 );
cout << cout.width( ) << endl;
cout << cout.width( ) << endl;
}
必要条件
ヘッダー: <ios>
名前空間: std