共用方式為


showbase

表示數字所顯示的標記基底。

ios_base& showbase(
   ios_base& _Str
);

參數

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

傳回值

在 _Str 衍生物件的參考。

備註

數字的正負號基底可以變更與 12 月10 月hex

操作工具有效地呼叫 _Str.setf(ios_base::showbase),然後傳回 _Str。

範例

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

int main( ) 
{
   using namespace std;
   int j = 100;

   cout << showbase << j << endl;   // dec is default
   cout << hex << j << showbase << endl;
   cout << oct << j << showbase << endl;

   cout << dec << j << noshowbase << endl;
   cout << hex << j << noshowbase << endl;
   cout << oct << j << noshowbase << endl;
}
  

需求

標題: <ios>

命名空間: std

請參閱

參考

iostream 程式設計

iostreams 慣例