Standard C++ Library : <ios> Members
Supports the ios class from the old iostream library. | |
Supports internal operations. | |
Holds the current position of the buffer pointer or file pointer. | |
Specifies the size of the stream. | |
Supports the wios class from the old iostream library. | |
Holds the current position of the buffer pointer or file pointer. |
Manipulators
Specifies that variables of type bool appear as true or false in the stream. | |
Specifies that integer variables appear in base 10 notation. | |
Specifies that a floating-point number is displayed in fixed-decimal notation. | |
Specifies that integer variables appear in base 16 notation. | |
Causes a number's sign to be left justified and the number to be right justified. | |
Causes text that is not as wide as the output width to appear in the stream flush with the left margin. | |
Specifies that variables of type bool appear as 1 or 0 in the stream. | |
Turns off indicating the notational base in which a number is displayed. | |
Displays only the whole-number part of floating-point numbers whose fractional part is zero. | |
Causes positive numbers to not be explicitly signed. | |
Cause spaces to be read by the input stream. | |
Causes output to be buffered and processed when the buffer is full. | |
Specifies that hexadecimal digits and the exponent in scientific notation appear in lowercase. | |
Specifies that integer variables appear in base 8 notation. | |
Causes text that is not as wide as the output width to appear in the stream flush with the right margin. | |
Causes floating point numbers to be displayed using scientific notation. | |
Indicates the notational base in which a number is displayed. | |
Displays the whole-number part of a floating-point number and digits to the right of the decimal point even when the fractional part is zero. | |
Causes positive numbers to be explicitly signed. | |
Cause spaces to not be read by the input stream. | |
Causes output to be processed when the buffer is not empty. | |
Specifies that hexadecimal digits and the exponent in scientific notation appear in uppercase. |
Classes
The template class describes the storage and member functions common to both input streams (of template class basic_istream) and output streams (of template class basic_ostream) that depend on the template parameters. | |
The template class describes an object that can store all the information needed to restore an arbitrary file-position indicator within any stream. | |
The class describes the storage and member functions common to both input and output streams that do not depend on the template parameters. |
'테크노트 > 기타' 카테고리의 다른 글
Grub 삭제하는 방법 (0) | 2006.09.28 |
---|---|
MFC 계산기 예제 소스 (0) | 2006.09.23 |
infix to postfix [소스] (0) | 2006.09.16 |
infix -> postfix (0) | 2006.09.15 |
산술식 (A*(B-C)/(D**2))-E의 수식을 후위표기법 과정을 이용하여 기술하라 (0) | 2006.09.12 |