cv (<div class="t-tr-text">const-volatilità<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">const-volatility</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>) specifiers
|
|
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/>
const- definisce che il tipo è costante.Original:const- defines that the type is constant.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.volatile- definisce che il tipo è volatili.Original:volatile- defines that the type is volatile.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.mutable- definisce che un membro di una classe non influisce sullo stato visibile all'esterno della classe.mutablemembri possono essere modificati in classi' costante, che è constness' è essenzialmente ignorato per il membro particolare.Original:mutable- defines that a member of a class does not affect the externally visible state of the class.mutablemembers can be modified in constant classes, that is constness is essentially ignored for the particular member.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Spiegazione
- Nota: cv-qualificazioni </ b> e cv-specificatori di </ b> (elenco) non sono la stessa cosa thing.
il CV-qualificazioni sono proprietà di un tipo, mentre cv-specificatori sono funzionalità del linguaggio per definire cv-qualificazioneOriginal:Note: cv-qualifiers and cv-specifiers (list above) are not the same thing.
The cv-qualifiers are properties of a type whereas cv-specifiers are language feature to define cv-qualifiersThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
'const volatile', 'const', 'volatile' o 'none'. const definisce che un tipo è costante, volatile definisce che il tipo è' volatile. Tipo non costante e non volatile non ha limitazioni aggiuntive, mentre costante e volatile implica quanto segue:'const volatile', 'const', 'volatile' or 'none'. const defines that a type is constant, volatile defines that the type is volatile. Non-constant and non-volatile type has no additional restrictions, whereas constant and volatile imply the following:You can help to correct and verify the translation. Click here for instructions.
- ' 'Costante - l'oggetto non deve essere modificata. Tentativo di farlo si traduce in un comportamento indefinito. Sulla maggior parte dei compilatori è errore di compilazione.Original:constant - the object shall not be modified. Attempt to do so results in undefined behavior. On most compilers it is compile-time error.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions. - ' 'Volatili - l'oggetto può essere modificato con mezzi non rilevabili dal compilatore, e quindi alcune ottimizzazioni del compilatore deve essere disabilitato.Original:volatile - the object can be modified by means not detectable by the compiler and thus some compiler optimizations must be disabled.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.
- Qualificato <
constOriginal:unqualified <constThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions. - Qualificato <
volatileOriginal:unqualified <volatileThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions. - Qualificato <
const volatileOriginal:unqualified <const volatileThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions. const<const volatilevolatile<const volatile
You can help to correct and verify the translation. Click [http://en.cppreference.com/w/Cppreference:MachineTranslations here] for instructions.
You can help to correct and verify the translation. Click [http://en.cppreference.com/w/Cppreference:MachineTranslations here] for instructions.
You can help to correct and verify the translation. Click here for instructions.
- Tipo qualificato può essere convertito
constOriginal:unqualified type can be converted toconstThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions. - Tipo qualificato può essere convertito
volatileOriginal:unqualified type can be converted tovolatileThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions. - Tipo qualificato può essere convertito
const volatileOriginal:unqualified type can be converted toconst volatileThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions. consttipo può essere convertitoconst volatileOriginal:consttype can be converted toconst volatileThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.volatiletipo può essere convertitoconst volatileOriginal:volatiletype can be converted toconst volatileThe 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.
Parole chiave
Esempio
| This section is incomplete |