다음을 통해 공유


showbase

숫자로 표시 되는 기본 정식을 나타냅니다.

ios_base& showbase(
   ios_base& _Str
);

매개 변수

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

반환 값

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

설명

정식 자료 번호를 변경할 수 있습니다 12 월, 10 월, 또는 16 진수.

효과적으로 manipulator를 호출 _Str.setf(ios_base::showbase), 다음 반환 _Str.

예제

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

요구 사항

헤더: <ios>

네임 스페이스: std

참고 항목

참조

iostream 프로그래밍

iostreams 규칙