共用方式為


大寫

指定十六進位數字和指數在科學標記法中顯示為大寫。

ios_base& uppercase( 
   ios_base& _Str 
);

參數

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

傳回值

將 _Str 衍生的物件參考。

備註

根據預設, nouppercase 生效。

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

範例

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

需求

標題: <ios>

命名空間: std

請參閱

參考

iostream 程式設計

iostreams 慣例