◐ Shell
clean mode source ↗

MachineTranslations here] for instructions.</div></div></div></div></div> – cppreference.com

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>

Aus cppreference.com

<metanoindex/>

<tbody> </tbody>

bool operator==( thread::id lhs, thread::id rhs );

(1) (seit C++11)

bool operator!=( thread::id lhs, thread::id rhs );

(2) (seit C++11)

bool operator<( thread::id lhs, thread::id rhs );

(3) (seit C++11)

bool operator<=( thread::id lhs, thread::id rhs );

(4) (seit C++11)

bool operator>( thread::id lhs, thread::id rhs );

(5) (seit C++11)

bool operator>=( thread::id lhs, thread::id rhs );

(6) (seit C++11)

Vergleicht zwei Thread-Identifizierer .

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.

1-2)

Überprüft, ob lhs und rhs repräsentieren entweder den gleichen Thread oder kein Gewinde .

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.

3-6)

Vergleicht lhs und rhs in einer solchen Weise, dass lhs und rhs sind total geordnet .

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.

Parameter

lhs, rhs -

Thread-Identifizierer zu vergleichen

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.

Rückgabewert

true, ob die entsprechende Beziehung gilt, false sonst .

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.

Ausnahmen

Komplexität

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.