std::locale::operator==, operator!=
Aus 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>| definiert in Header <locale>
|
||
bool operator==( const locale& other ) const; |
(1) | |
bool operator!=( const locale& other ) const; |
(2) | |
Tests zwei Locales für Gleichheit. Benannt locales werden als gleich betrachtet, wenn ihre Namen gleich sind. Unbenannt locales werden als gleich betrachtet, wenn sie Kopien voneinander sind .
Original:
Tests two locales for equality. Named locales are considered equal if their names are equal. Unnamed locales are considered equal if they are copies of each other.
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.
Parameter
| other | - | a std::locale zu vergleichende Objekt
Original: a std::locale object 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 other ist eine Kopie der *this oder hat einen identischen Namen, false sonst .Original:
true if other is a copy of *this or has an identical name, 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.
2)
false wenn other ist eine Kopie der *this oder hat einen identischen Namen, true sonst .Original:
false if other is a copy of *this or has an identical name, true 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.
Beispiel
| This section is incomplete Reason: no example |
Siehe auch
baut eine neue locale Original: constructs a new locale The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (öffentliche Elementfunktion) | |
gibt den Namen des Lokals oder "*", wenn unbenannt Original: returns the name of the locale or "*" if unnamed The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (öffentliche Elementfunktion) | |