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>
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) | (depuis C++11) |
bool operator!=( thread::id lhs, thread::id rhs ); |
(2) | (depuis C++11) |
bool operator<( thread::id lhs, thread::id rhs ); |
(3) | (depuis C++11) |
bool operator<=( thread::id lhs, thread::id rhs ); |
(4) | (depuis C++11) |
bool operator>( thread::id lhs, thread::id rhs ); |
(5) | (depuis C++11) |
bool operator>=( thread::id lhs, thread::id rhs ); |
(6) | (depuis C++11) |
Compare deux identificateurs fil .
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)
Vérifie si
lhs et rhs représenter soit le même fil ou sans fil .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)
Compare
lhs et rhs de telle manière, que lhs et rhs sont totalement ordonné .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.
Paramètres
| lhs, rhs | - | identificateurs fil à comparer
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. |
Retourne la valeur
true si la relation correspondante contient, false autrement .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.
Exceptions
Complexité
Constant .
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.