<div class="t-tr-text">C + +: concetti<div class="t-tr-dropdown"><div><div><div class="t-tr-dropdown-arrow-border"></div><div class="t-tr-dropdown-arrow"></div><div class="t-tr-dropdown-h">Original:</div><div class="t-tr-dropdown-orig">C++ concepts:</div><div class="t-tr-dropdown-notes">The text has been machine-translated via [http://translate.google.com Google Translate].<br/> You can help to correct and verify the translation. Click [http://en.cppreference.com/w/Cppreference:MachineTranslations here] for instructions.</div></div></div></div></div> PODType
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. |
<metanoindex/>
Specifica che il tipo è di tipo POD (Plain Old Data). Questo significa che il tipo è compatibile con i tipi utilizzati nel linguaggio di programmazione C, possono essere manipolati utilizzando funzioni di libreria C: può essere creato con std::malloc, esso può essere copiato con std::memmove, ecc, e possono essere scambiati con librerie C direttamente, in la sua forma binaria.
Original:
Specifies that the type is POD (Plain Old Data) type. This means the type is compatible with the types used in the C programming language, can be manipulated using C library functions: it can be created with std::malloc, it can be copied with std::memmove, etc, and can be exchanged with C libraries directly, in its binary form.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Si noti che la norma non definisce un requisito di nome o di un concetto con questo nome. Si tratta di una categoria di tipo definito dal linguaggio di base. Qui è inclusa come concetto solo per coerenza.
Original:
Note, that the standard doesn't define a named requirement or concept with this name. This is a type category defined by the core language. It is included here as concept only for consistency.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Requisiti NJ
In entrambi i casi
Original:
Either
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
O un tipo di classe (o class struct o union) che è
Original:
Or a class type (class or struct or union) that is
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
- an
AggregateType non ha membri non statici che sono non-POD
Original:
has no non-static members that are non-POD
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.non ci sono membri del tipo di riferimento
Original:
has no members of reference type
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.non ha definito dall'utente costruttore di copia
Original:
has no user-defined copy constructor
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.non ha definito dall'utente distruttore
Original:
has no user-defined destructor
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
O una matrice di questo tipo
Original:
Or an array of such type
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Requisiti NJ
In entrambi i casi
Original:
Either
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
O un tipo di classe (o class struct o union) che è
Original:
Or a class type (class or struct or union) that is
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
TrivialTypeStandardLayoutTypenon ha membri non statici che sono non-POD
Original:
has no non-static members that are non-POD
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
O una matrice di questo tipo
Original:
Or an array of such type
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Vedi anche
controlla se è un tipo semplice i dati vecchi (POD) di tipo Original: checks if a type is plain-old data (POD) type The text has been machine-translated via Google Translate. (classe template) [modifica] | |