다음을 통해 공유


uppercase

16 진수 및 지 수 표기법에 대문자로 표시할지 지정 합니다.

ios_base& uppercase(
   ios_base& _Str
);

매개 변수

  • _Str
    참조 형식의 개체를 ios_base, 상속 형식 또는 ios_base.

반환 값

개체 참조의 _Str 파생 됩니다.

설명

기본적으로 nouppercase 적용 됩니다.

효과적으로 manipulator를 호출 _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 규칙