showbase
Označuje konvenční base, ve kterém se zobrazí číslo.
ios_base& showbase(
ios_base& _Str
);
Parametry
- _Str
Odkaz na objekt typu ios_base, nebo typ, který dědí z ios_base.
Vrácená hodnota
Odkaz na objekt, ze kterého _Str je odvozen.
Poznámky
Konvenční base čísla je možné měnit pomocí dec, x, nebo hex.
Manipulator efektivně volá _Str.setf(ios_base::showbase) a potom vrátí _Str.
Příklad
// 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;
}
Požadavky
Záhlaví:<ios>
Obor názvů: std