◐ Shell
clean mode source ↗

std::error_category::operator==,!=,< – cppreference.com

Aus cppreference.com

<metanoindex/>

<tbody> </tbody>

bool operator==( const error_category& rhs ) const;

(1) (seit C++11)

bool operator!=( const error_category& rhs ) const;

(2) (seit C++11)

bool operator<( const error_category& rhs ) const;

(1) (seit C++11)

Vergleichbar anderen Fehler Kategorie .

Original:

Compares to another error category.

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

1)

Überprüft, ob *this und rhs beziehen sich auf das gleiche Objekt .

Original:

Checks whether *this and rhs refer to the same object.

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

2)

Überprüft, ob *this und rhs nicht auf dasselbe Objekt verweisen .

Original:

Checks whether *this and rhs do not refer to the same object.

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

3)

Bestellungen *this und rhs durch die Reihenfolge der this und &rhs. Entspricht std::less<const error_category*>()(this, &rhs) .

Original:

Orders *this and rhs by the order of this and &rhs. Equivalent to std::less<const error_category*>()(this, &rhs).

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Parameter

code -

gibt den Fehlercode zu vergleichen

Original:

specifies the error code to compare

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

condition -

gibt den Fehler zu vergleichen

Original:

specifies the error condition 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

1)

true wenn *this und rhs beziehen sich auf das gleiche Objekt, false sonst .

Original:

true if *this and rhs refer to the same object, false otherwise.

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

2)

true wenn *this und rhs nicht auf das gleiche Objekt beziehen, false ansonsten .

Original:

true if *this and rhs do not refer to the same object, false otherwise.

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

3)

true wenn *this weniger als rhs wie von der Reihenfolge der this definiert und &rhs .

Original:

true if *this is less than rhs as defined by the order of this and &rhs.

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Ausnahmen