共用方式為


internal (Standard C++ 程式庫)

產生一個數字符號靠左對齊和的數字靠右對齊。

ios_base& internal( 
   ios_base& _Str 
);

參數

  • _Str
    參考型別 ios_base物件,或是繼承自 ios_base的型別。

傳回值

將 _Str 衍生的物件參考。

備註

showpos 會導致這個標記為正數顯示。

操作工具有效地呼叫 _Str。setf(ios_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 慣例