operator==,!=,<,<=,>,>=<div class="t-tr-text">(Std :: thread :: id)<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">(std::thread::id)</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>
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==( thread::id lhs, thread::id rhs ); |
(1) | (dal C++11) |
bool operator!=( thread::id lhs, thread::id rhs ); |
(2) | (dal C++11) |
bool operator<( thread::id lhs, thread::id rhs ); |
(3) | (dal C++11) |
bool operator<=( thread::id lhs, thread::id rhs ); |
(4) | (dal C++11) |
bool operator>( thread::id lhs, thread::id rhs ); |
(5) | (dal C++11) |
bool operator>=( thread::id lhs, thread::id rhs ); |
(6) | (dal C++11) |
Confronta due identificatori filo.
Original:
Compares two thread identifiers.
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)
Verifica se
lhs e rhs rappresentano o lo stesso thread, o nessun thread.Original:
Checks whether
lhs and rhs represent either the same thread, or no thread.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
lhs e rhs in modo tale, che lhs e rhs sono totalmente ordinata.Original:
Compares
lhs and rhs in such a way, that lhs and rhs are totally ordered.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
| lhs, rhs | - | identificatori filo da confrontare
Original: thread identifiers to compare The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Valore di ritorno
true se la relazione corrispondente detiene, false altrimenti.Original:
true whether the corresponding relation holds, 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.
Eccezioni
Complessità
Costante.
Original:
Constant.
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.