次の方法で共有


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

参照

関連項目

ios_base クラス

iostream プログラミング

iostreams の規則