std::type_index::operator==,!=,<,<=,>,>=
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/>
<tbody> </tbody> bool operator==( const type_index& rhs ) const; |
(dal C++11) | |
bool operator!=( const type_index& rhs ) const; |
(dal C++11) | |
bool operator<( const type_index& rhs ) const; |
(dal C++11) | |
bool operator<=( const type_index& rhs ) const; |
(dal C++11) | |
bool operator>( const type_index& rhs ) const; |
(dal C++11) | |
bool operator>=( const type_index& rhs ) const; |
(dal C++11) | |
Confronta gli oggetti std::type_info sottostanti.
Original:
Compares the underlying std::type_info objects.
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.
1-2)
Controlla se gli oggetti std::type_info sottostanti si riferiscono allo stesso tipo.
Original:
Checks whether the underlying std::type_info objects refer to the same type.
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.
3-6)
Confronta gli oggetti sottostanti std::type_info come definiti da un definito dall'implementazione di ordinazione. Il confronto è fatto da type_info::before.
Original:
Compares the underlying std::type_info objects as defined by an implementation-defined ordering. The comparison is done by type_info::before.
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.
Parametri
| rhs | - | type_index un altro oggetto da confrontareOriginal: another type_index object to compare toThe text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Valore di ritorno
1)
true se gli oggetti std::type_info sottostanti si riferiscono a dello stesso tipo, altrimenti falseOriginal:
true if the underlying std::type_info objects refer to the same type, false otherwiseThe 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.
2)
true se gli oggetti std::type_info sottostanti non si riferiscono allo stesso tipo, altrimenti falseOriginal:
true if the underlying std::type_info objects refer not to the same type, false otherwiseThe 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.
3-6)
true se i tipi di cui dagli oggetti std::type_info sottostanti sono ordinate per ordine corrispondente, false altrimenti.Original:
true if the types referred by the underlying std::type_info objects are ordered by corresponding order, false otherwise.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.