◐ Shell
clean mode source ↗

std::make_signed – cppreference.com

Aus cppreference.com

<metanoindex/>

<tbody> </tbody>

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.

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.

Beispiel

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) [edit]

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) [edit]

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) [edit]