◐ Shell
clean mode source ↗

std::fpclassify - cppreference.com

Da cppreference.com.

Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.

La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui.

Click here for the English version of this page

<metanoindex/>

<tbody> </tbody>

Elemento definito nell'header

<cmath>

int fpclassify( float arg );

(dal C++11)

int fpclassify( double arg );

(dal C++11)

int fpclassify( long double arg );

(dal C++11)

Categorizza arg floating point, nelle seguenti categorie: zero, subnormali, normale, infiniti, NAN, o l'attuazione categoria definita.

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.

Parametri

arg -

valore in virgola mobile

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.

Valore di ritorno

uno dei FP_INFINITE, FP_NAN, FP_NORMAL, FP_SUBNORMAL, FP_ZERO o implementazione tipo definito, specificando la categoria di 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.

Vedi anche

(C++11)

controlla se il numero dato ha un valore finito

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.


(funzione) [modifica]

(C++11)

controlla se il numero dato è infinito

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.


(funzione) [modifica]

(C++11)

controlla se il numero dato è 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.


(funzione) [modifica]

(C++11)

controlla se il numero dato è normale

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.


(funzione) [modifica]

fornisce un'interfaccia per le proprietà delle query di tutti i tipi numerici fondamentali .

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.


(classe template) [modifica]