operator==,!=,<,<=,>,>=<div class="t-tr-text">(Std :: fio :: 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>
De cppreference.com
|
|
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/>
<tbody> </tbody> bool operator==( thread::id lhs, thread::id rhs ); |
(1) | (desde C++11) |
bool operator!=( thread::id lhs, thread::id rhs ); |
(2) | (desde C++11) |
bool operator<( thread::id lhs, thread::id rhs ); |
(3) | (desde C++11) |
bool operator<=( thread::id lhs, thread::id rhs ); |
(4) | (desde C++11) |
bool operator>( thread::id lhs, thread::id rhs ); |
(5) | (desde C++11) |
bool operator>=( thread::id lhs, thread::id rhs ); |
(6) | (desde C++11) |
Compara dois identificadores de rosca.
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 representar tanto fio o mesmo, ou nenhum segmento.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)
Compara
lhs rhs e de tal forma, que lhs e rhs são totalmente ordenada.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.
Parâmetros
| lhs, rhs | - | identificadores de rosca para comparar
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. |
Valor de retorno
true se a relação correspondente possui, de outro modo.. falseOriginal:
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.
Exceções
Complexidade
Constante.
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.