std::make_signed
Aus 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. |
definiert in Header <type_traits> | ||
template<class T > struct make_signed; | (seit C++11) | |
Angesichts integraler (außer bool) oder Aufzählungstyp
T
bietet das Mitglied typedef type
die das signierte Integer-Typ entspricht T
ist, mit der gleichen cv-Qualifikation .Original:
Given an integral (except bool) or enumeration type
T
, provides the member typedef type
which is the signed integer type corresponding to T
, with the same cv-qualifiers.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]Mitglied Typen
Name Original: Name The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | Definition |
type | die signierte Integer-Typ entspricht T Original: the signed integer type corresponding to T The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[Bearbeiten]Beispiel
This section is incomplete Reason: no example |
[Bearbeiten]Siehe auch
(C++11) | prüft, ob eine Art arithmetischer Typ unterzeichnet wird Original: checks if a type is signed arithmetic 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) |
(C++11) | prüft, ob ein Typ ist unsigned arithmetischen Typ Original: checks if a type is unsigned arithmetic 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) |
(C++11) | macht den gegebenen ganzzahligen Typ unsigned Original: makes the given integral type unsigned The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Klassen-Template) |