std::numpunct<CharT>:: ~numpunct
From cppreference.net
C++
Text processing library
| Localization library | |||||||||||||||||||||||||
| Regular expressions library (C++11) | |||||||||||||||||||||||||
| Formatting library (C++20) | |||||||||||||||||||||||||
| Null-terminated sequence utilities | |||||||||||||||||||||||||
| Byte strings | |||||||||||||||||||||||||
| Multibyte strings | |||||||||||||||||||||||||
| Wide strings | |||||||||||||||||||||||||
| Primitive numeric conversions | |||||||||||||||||||||||||
|
|||||||||||||||||||||||||
| Text encoding identifications | |||||||||||||||||||||||||
|
|||||||||||||||||||||||||
Localization library
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
헤더에 정의됨
<locale>
|
||
|
protected
:
~numpunct
(
)
;
|
||
std:: numpunct 패싯을 소멸합니다. 이 소멸자는 보호되며 가상입니다( 기본 클래스 소멸자가 가상이기 때문). std:: numpunct 타입의 객체는 대부분의 패싯과 마찬가지로, 이 패싯을 구현하는 마지막 std::locale 객체가 범위를 벗어나거나, 사용자 정의 클래스가 std:: numpunct 에서 파생되어 공개 소멸자를 구현한 경우에만 소멸될 수 있습니다.
예제
이 코드 실행
#include <iostream> #include <locale> struct Destructible_numpunct : public std::numpunct<wchar_t> { Destructible_numpunct(std::size_t refs = 0) : numpunct(refs) {} // 참고: 암시적 소멸자는 public입니다 }; int main() { Destructible_numpunct dc; // std::numpunct<wchar_t> c; // 컴파일 오류: protected 소멸자 }