共用方式為


internal (標準 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 慣例