次の方法で共有


left

左の余白にストリームの前に終了する広範にほど出力桁数テキストを指定します。

ios_base& left( 
   ios_base& _Str 
);

パラメーター

  • _Str
    ios_baseオブジェクト、または ios_baseから継承する型への参照。

戻り値

_Str が派生されるオブジェクトへの参照。

解説

マニピュレーターは効果的に _Str.setf (ios_base::leftios_base::adjustfield) を呼び出して _Strを返します。

使用例

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

int main( ) 
{
   using namespace std;
   double f1= 5.00;
   cout.width( 20 ); 
   cout << f1 << endl;
   cout << left << f1 << endl;
}
  

必要条件

ヘッダー: <ios>

名前空間: std

参照

関連項目

iostream プログラミング

iostreams の規則