std::fpclassify
Материал из cppreference.com
![]() |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
Заголовочный файл <cmath>
|
||
int fpclassify( float arg ); |
(начиная с C++11) | |
int fpclassify( double arg ); |
(начиная с C++11) | |
int fpclassify( long double arg ); |
(начиная с C++11) | |
Категоризация плавающей запятой
arg
на следующие категории: ноль, субнормальные, нормальный, бесконечная, NAN, или осуществление определенной категории. Original:
Categorizes floating point value
arg
into the following categories: zero, subnormal, normal, infinite, NAN, or implementation-defined category. The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[править] Параметры
arg | - | плавающей точкой
Original: floating point value The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[править] Возвращаемое значение
одна из FP_INFINITE, FP_NAN, FP_NORMAL, FP_SUBNORMAL, FP_ZERO или осуществлению определенных типов, с указанием категории
arg
.Original:
one of FP_INFINITE, FP_NAN, FP_NORMAL, FP_SUBNORMAL, FP_ZERO or implementation-defined type, specifying the category of
arg
.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[править] См. также
(C++11) |
проверяет, является ли данное число имеет конечное значение Original: checks if the given number has finite value The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (функция) |
(C++11) |
проверяет, является ли данное число бесконечно Original: checks if the given number is infinite The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (функция) |
(C++11) |
проверяет, является ли данное число NaN Original: checks if the given number is NaN The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (функция) |
(C++11) |
проверяет, является ли данное число является нормальным Original: checks if the given number is normal The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (функция) |
предоставляет интерфейс для запроса свойства всех основных числовых типов . Original: provides an interface to query properties of all fundamental numeric types. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (шаблон класса) |