Condividi tramite


showbase

Indica la base di annotazione in cui un numero visualizzato.

ios_base& showbase( 
   ios_base& _Str 
);

Parametri

  • _Str
    Un riferimento a un oggetto di tipo ios_base, o a un tipo che eredita da ios_base.

Valore restituito

Un riferimento all'oggetto da cui _Str è derivato.

Note

La base di annotazione di un numero può essere modificata con dicembre, ottobre, o esadecimale.

Il manipolatore effettivamente chiama _Str.setf(ios_base::showbase) e quindi restituisce _Str.

Esempio

// 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;
}
  

Requisiti

IOS <diIntestazione: >

Spazio dei nomi: std

Vedere anche

Riferimenti

Programmazione di iostream

Convenzioni di iostream