std:: float_denorm_style
From cppreference.net
<
cpp
|
types
|
numeric limits
C++
Utilities library
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Type support
| Basic types | |||||||||||||||||||||
| Fixed width integer types (C++11) | |||||||||||||||||||||
| Fixed width floating-point types (C++23) | |||||||||||||||||||||
|
|||||||||||||||||||||
| Numeric limits | |||||||||||||||||||||
| C numeric limits interface | |||||||||||||||||||||
| Runtime type information | |||||||||||||||||||||
|
|||||||||||||||||||||
std::numeric_limits
| Static constants | ||||
|
(C++11)
|
||||
| Static member functions | ||||
|
(C++11)
|
||||
| Helper types | ||||
|
float_denorm_style
|
|
헤더 파일에 정의됨
<limits>
|
||
|
enum
float_denorm_style
{
denorm_indeterminate
=
-
1
,
|
(C++23에서 사용 중단됨) | |
std::float_denorm_style
타입의 열거형 상수들은 부동소수점 타입이 서브노멀 값을 지원하는지 여부를 나타냅니다.
열거형 상수
| 열거자 | 의미 |
std::denorm_indeterminate
|
서브노멀 값 지원 여부를 확인할 수 없음 |
std::denorm_absent
|
해당 타입이 서브노멀 값을 지원하지 않음 |
std::denorm_present
|
해당 타입이 서브노멀 값을 허용함 |
참고 항목
|
[static]
|
부동소수점 타입이 사용하는 비정규화(denormalization) 스타일을 식별합니다
(public static member constant) |