internal(标准 C++ 库)

导致一个数字符号左侧对齐和数字到右侧对齐。

ios_base& internal( 
   ios_base& _Str 
);

参数

  • _Str
    引用类型到 ios_base对象,或者从 ios_base继承的类型。

返回值

到 _Str 派生的对象的引用。

备注

showpos 生成符号为正数显示。

操控程序有效调用 _Str。setfios_base::internalios_base::adjustfield(,),然后返回 _Str。

示例

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

int main( void ) 
{
   using namespace std;
   float i = -123.456F;
   cout.fill( '.' );
   cout << setw( 10 ) << i << endl;
   cout << setw( 10 ) << internal << i << endl;
}
  

要求

页眉: <ios>

命名空间: std

请参见

参考

iostream 编程

iostreams 约定