다음을 통해 공유


internal (표준 C++ 라이브러리)

숫자의 부호를 왼쪽 맞춤을 오른쪽 맞춤 된 하 수 됩니다.

ios_base& internal(
   ios_base& _Str
);

매개 변수

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

반환 값

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

설명

showpos 양수를 표시 하는 부호.

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

예제

// ios_internal.cpp
// compile with: /EHsc
#include <iostream>
#include <iomanip>

int main( void ) 
{
   using namespace std;
   float i = -123.456F;
   cout.fill( '.' );
   cout << setw( 10 ) << i << endl;
   cout << setw( 10 ) << internal << i << endl;
}
  

요구 사항

헤더: <ios>

네임 스페이스: std

참고 항목

참조

iostream 프로그래밍

iostreams 규칙