std::ios_base:: event
From cppreference.net
C++
Input/output library
| I/O manipulators | ||||
| Print functions (C++23) | ||||
| C-style I/O | ||||
| Buffers | ||||
|
(C++23)
|
||||
|
(
C++98/26*
)
|
||||
|
(C++20)
|
||||
| Streams | ||||
| Abstractions | ||||
| File I/O | ||||
| String I/O | ||||
| Array I/O | ||||
|
(C++23)
|
||||
|
(C++23)
|
||||
|
(C++23)
|
||||
|
(
C++98/26*
)
|
||||
|
(
C++98/26*
)
|
||||
|
(
C++98/26*
)
|
||||
| Synchronized Output | ||||
|
(C++20)
|
||||
| Types | ||||
| Error category interface | ||||
|
(C++11)
|
||||
|
(C++11)
|
std::ios_base
| Member functions | ||||
| Formatting | ||||
| Locales | ||||
| Internal extensible array | ||||
| Miscellaneous | ||||
| Member classes | ||||
| Member types | ||||
|
ios_base::event
|
||||
|
enum
event
{
erase_event, imbue_event, copyfmt_event
}
;
|
||
register_callback() 함수에 등록된 함수들에 전달되는 이벤트 유형을 지정합니다. 다음 상수들이 정의되어 있습니다:
| 열거자 | 의미 |
erase_event
|
~ios_base() 또는 basic_ios::copyfmt() 에서 발생 (멤버 복사가 이루어지기 전) |
imbue_event
|
imbue() 에서 발생 |
copyfmt_event
|
basic_ios::copyfmt() 에서 발생 (멤버 복사가 이루어진 후, 예외 설정이 복사되기 전) |
예제
|
이 섹션은 불완전합니다
이유: 예제 없음 |