Aracılığıyla paylaş


showbase

Bir sayıyı görüntülenen notational Bankası gösterir.

ios_base& showbase(
   ios_base& _Str
);

Parametreler

  • _Str
    Türünde bir nesne için bir başvuru ios_base, ya da devraldığı bir türe ios_base.

Dönüş Değeri

Hangi _ nesnesine bir başvuruStr türetilmiştir.

Notlar

Bir sayının notational Bankası ile değiştirilebilir Ara, Eki, veya onaltılık.

Etkili bir şekilde manipulator çağıran _Str.setf(ios_base::showbase), daha sonra döndürür _Str.

Örnek

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

Gereksinimler

Başlık: <ios>

Namespace: std

Ayrıca bkz.

Başvuru

iostream programlama

iostreams kuralları