ios_base::width

将输出流的长度。

streamsize width( ) const; 
streamsize width( 
   streamsize _Wide 
);

参数

  • _Wide
    输出流中所需大小。

返回值

当前宽度设置。

备注

第一个成员函数返回存储的字段宽度。 第二个成员函数存储在字段宽度的 _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 约定