hex
Specifies that integer variables shall appear in base 16 notation.
ios_base& hex(
ios_base& _Str
);
매개 변수
- _Str
A reference to an object of type ios_base, or to a type that inherits from ios_base.
반환 값
A reference to the object from which _Str is derived.
설명
By default, integer variables are displayed in base 10 notation. dec and oct also change the way integer variables appear.
The manipulator effectively calls _Str**.**setf(ios_base::hex, ios_base::basefield), and then returns _Str.
예제
See dec for an example of how to use hex.
요구 사항
Header: <ios>
네임스페이스: std