std::numeric_limits::is_integer
Aus cppreference.com
< cpp | types | numeric limits
![]() | 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. |
staticconstbool is_integer | (bis C + +11) | |
staticconstexprbool is_integer | (seit C++11) | |
Der Wert der std::numeric_limits<T>::is_integer ist true für alle Integer-Arithmetik Typen
T
und false anders. Diese Konstante ist sinnvoll für alle Spezialisierungen .Original:
The value of std::numeric_limits<T>::is_integer is true for all integer arithmetic types
T
and false otherwise. This constant is meaningful for all specializations.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.
[Bearbeiten]Standard Spezialisierungen
T | Wert std::numeric_limits<T>::is_integer Original: value of std::numeric_limits<T>::is_integer The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
/* non-specialized */ | false |
bool | true |
char | true |
signedchar | true |
unsignedchar | true |
wchar_t | true |
char16_t | true |
char32_t | true |
short | true |
unsignedshort | true |
int | true |
unsignedint | true |
long | true |
unsignedlong | true |
longlong | true |
unsignedlonglong | true |
float | false |
double | false |
longdouble | false |
[Bearbeiten]Siehe auch
(C++11) | prüft, ob ein Typ ist integraler Typ Original: checks if a type is integral type The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Klassen-Template) |
[statisch] | identifiziert unterzeichnet Typen Original: identifies signed types The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (public static Mitglied konstanten) |
[statisch] | identifiziert genauen Typen Original: identifies exact types The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (public static Mitglied konstanten) |
[statisch] | identifies types that represent a finite set of values (public static Mitglied konstanten) |