uppercase
Onaltılık basamak ve üs değerleri bilimsel gösterimde büyük harf görüntüleneceğini belirtir.
ios_base& uppercase(
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
Almak istediğiniz nesnesine bir başvuru _Str türetilmiştir.
Notlar
Varsayılan olarak, nouppercase etkili olduğu.
Etkili bir şekilde manipulator çağıran _Str.setf(ios_base::uppercase), daha sonra döndürür _Str.
Örnek
// ios_uppercase.cpp
// compile with: /EHsc
#include <iostream>
int main( void )
{
using namespace std;
double i = 1.23e100;
cout << i << endl;
cout << uppercase << i << endl;
int j = 10;
cout << hex << nouppercase << j << endl;
cout << hex << uppercase << j << endl;
}
Gereksinimler
Başlık: <ios>
Namespace: std