cv (<div class="t-tr-text">const volatilidade<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
|
|
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. |
<metanoindex/>
const- define que o tipo é constante'.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- define que o tipo é volátil'.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- define que um membro de uma classe não afeta o estado externamente visível da classe. Membrosmutablepode ser modificado em' classes de constantes, que é constness' é essencialmente ignorados para o membro particular.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.
Explicação
- Nota: CV-eliminatórias </ b> e cv-especificadores </ b> (lista acima) não são os mesmos thing.
O CV-eliminatórias são propriedades de um tipo enquanto cv-especificadores são recurso de linguagem para definir CV-eliminatóriasOriginal: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' ou 'none'. const define que o tipo é constante, volatile define que o tipo é' volátil. Tipo não-constante e não-volátil não tem restrições adicionais, enquanto constante e volátil implica o seguinte:'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.
- ' 'Constante - o objeto não deve ser modificado. Tente fazer isso resulta em comportamento indefinido. Na maioria dos compiladores é tempo de compilação erro.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. - ' 'Volátil - o objeto pode ser modificado por meio não detectáveis pelo compilador e, portanto, algumas otimizações do compilador deve ser desativado.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.
- Incompetente <
constOriginal:unqualified <constThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions. - Incompetente <
volatileOriginal:unqualified <volatileThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions. - Incompetente <
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 não qualificado pode ser convertido para
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 não qualificado pode ser convertido para
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 não qualificado pode ser convertido para
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 pode ser convertida paraconst 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 pode ser convertida paraconst 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.
Palavras-chave
Exemplo
| Esta seção está incompleta |