Comparison operators
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. |
Vergleicht die Argumente .
Original:
Compares the arguments.
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.
Operator name | Syntax | Overloadable | Prototype examples (for class T) | |
---|---|---|---|---|
Inside class definition | Outside class definition | |||
equal to | a == b
|
Yes | bool T::operator ==(const T2 &b) const; | bool operator ==(const T &a, const T2 &b); |
not equal to | a != b
|
Yes | bool T::operator !=(const T2 &b) const; | bool operator !=(const T &a, const T2 &b); |
less than | a < b
|
Yes | bool T::operator <(const T2 &b) const; | bool operator <(const T &a, const T2 &b); |
greater than | a > b
|
Yes | bool T::operator >(const T2 &b) const; | bool operator >(const T &a, const T2 &b); |
less than or equal to | a <= b
|
Yes | bool T::operator <=(const T2 &b) const; | bool operator <=(const T &a, const T2 &b); |
greater than or equal to | a >= b
|
Yes | bool T::operator >=(const T2 &b) const; | bool operator >=(const T &a, const T2 &b); |
|
Inhaltsverzeichnis |
[Bearbeiten] Erklärung
Gibt den boolean Ergebnis des Vergleichs der Werte der Argumente, die nicht geändert werden .
Original:
Returns the boolean result of comparison of the values of the arguments, which are not modified.
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.
[Bearbeiten] Arithmetische Vergleichsoperatoren
Für jedes Paar von geförderten arithmetische Typen
L
und R
, einschließlich Aufzählungstypen, beteiligen die folgende Funktion Signaturen in Überlast-Auflösung:Original:
For every pair of promoted arithmetic types
L
and R
, including enumeration types, the following function signatures participate in overload resolution: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.
bool operator<(L, R); |
||
bool operator>(L, R); |
||
bool operator<=(L, R); |
||
bool operator>=(L, R); |
||
bool operator==(L, R); |
||
bool operator!=(L, R); |
||
Wenn die Operanden arithmetische oder Aufzählungstyp (scoped oder ohne Bereichseinschränkung) werden üblichen arithmetischen Umwandlungen nach den Regeln für arithmetischen Operatoren durchgeführt. Die Werte werden nach der Konvertierung verglichen:
Original:
If the operands has arithmetic or enumeration type (scoped or unscoped), usual arithmetic conversions are performed following the rules for arithmetischen Operatoren. The values are compared after conversions:
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.
[Bearbeiten] Beispiel
#include <iostream> int main() { std::cout << std::boolalpha; int n = -1; int n2 = 1; std::cout << " -1 == 1? " << (n == n2) << '\n' << "Comparing two signed values:\n" << " -1 < 1? " << (n < n2) << '\n' << " -1 > 1? " << (n > n2) << '\n'; unsigned int u = 1; std::cout << "Comparing signed and unsigned:\n" << " -1 < 1? " << (n < u) << '\n' << " -1 > 1? " << (n > u) << '\n'; unsigned char uc = 1; std::cout << "Comparing signed and smaller unsigned:\n" << " -1 < 1? " << (n < uc) << '\n' << " -1 > 1? " << (n > uc) << '\n'; }
Output:
-1 == 1? false Comparing two signed values: -1 < 1? true -1 > 1? false Comparing signed and unsigned: -1 < 1? false -1 > 1? true Comparing signed and smaller unsigned: -1 < 1? true -1 > 1? false
[Bearbeiten] Pointer Vergleichsoperatoren
Für jede Art
P
die entweder Zeiger auf Objekt oder Zeiger auf Funktion oder std::nullptr_t ist, und für jede Art MP
die einen Zeiger auf Member-Objekt oder Zeiger auf Member-Funktion ist die folgende Funktion Signaturen in Überladungsauflösung teilnehmen:Original:
For every type
P
which is either pointer to object or pointer to function or std::nullptr_t, and for every type MP
that is a pointer to member object or pointer to member function, the following function signatures participate in overload resolution: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.
bool operator<(P, P); |
||
bool operator>(P, P); |
||
bool operator<=(P, P); |
||
bool operator>=(P, P); |
||
bool operator==(P, P); |
||
bool operator!=(P, P); |
||
bool operator==(MP, MP); |
||
bool operator!=(MP, MP); |
||
Vergleichsoperatoren können zwei Zeigern (oder Zeiger-zu-Mitgliedern für operator== und operator!= only), oder einen Zeiger und einen Null-Zeiger Konstante oder Null-Zeiger zwei Konstanten (aber nur solange, wie mindestens eine von ihnen ist vergleichen std::nullptr_t: Vergleich von NULL und NULL folgt arithmetischer Vergleich Regeln). Pointer Konvertierungen (Zeiger auf Benutzer Konvertierungen wenn die Argumente Zeigern auf Mitglieder sind) und sind mit beiden Qualifikation Konvertierungen Operanden angelegt, um das zusammengesetzte Zeigertyp zu erhalten, wie folgt
Original:
Comparison operators can be used to compare two pointers (or pointers-to-members, for operator== and operator!= only), or a pointer and a null pointer constant, or two null pointer constants (but only as long as at least one of them is std::nullptr_t: comparison of NULL and NULL follows arithmetic comparison rules). Pointer Konvertierungen (pointer to member conversions if the arguments are pointers to members) and Qualifikation Konvertierungen are applied to both operands to obtain the composite pointer type, as follows
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)
Wenn beide Operanden NULL-Zeiger-Konstanten sind, ist der Verbund Zeigertyp std::nullptr_t
Original:
If both operands are null pointer constants, the composite pointer type is std::nullptr_t
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)
Wenn ein Operand ein Null-Zeiger Konstante und das andere ist ein Zeiger, der zusammengesetzten Typ genau die Zeiger-Typ
Original:
If one operand a null pointer constant and the other is a pointer, the composite type is exactly the pointer type
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)
Wenn beide Operanden Zeiger auf die gleiche Art, mit verschiedenen cv-Qualifikation sind, ist der Verbund Zeiger auf die gleiche Art mit cv-Qualifikation, die eine Vereinigung der cv-Qualifikationen der Argumente ist .
Original:
If both operands are pointers to the same type, with different cv-qualification, the composite is pointer to the same type with cv-qualification that is a union of the cv-qualifications of the arguments.
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.
Beachten Sie, dass dies bedeutet, dass jeder Zeiger mit void* verglichen werden können .
Original:
Note that this implies that any pointer can be compared with void*.
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.
Ergebnisse des Vergleichs zweier Zeiger (nach Umwandlungen) wie folgt bestimmt:
Original:
Results of comparing two pointers (after conversions) are determined as follows:
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)
Wenn die Zeiger
p
und q
Original:
If the pointers
p
and q
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.
a)
verweisen auf das gleiche Objekt oder Funktion
Original:
point to the same object or function
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.
b)
oder weisen ein über das Ende des gleichen Array
Original:
or point one past the end of the same array
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.
c)
oder sind beide null Zeiger
Original:
or are both null pointers
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.
dann die Zeiger sind gleich: p==q, p<=q und p>=q Rückkehr true, während p!=q, p<q und p>q Rückkehr false
Original:
then the pointers compare equal: p==q, p<=q, and p>=q return true, while p!=q, p<q, and p>q return false,
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)
Wenn einer der Operanden ein Null-Zeiger und die andere nicht, sie ungleich vergleichen: p==q kehrt true, p!=q kehrt false, ist das Verhalten anderer Betreiber nicht näher .
Original:
If one of the operands is a null pointer and the other is not, they compare unequal: p==q returns true, p!=q returns false, the behavior of other operators is unspecified.
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)
Wenn die Zeiger
p
und q
Punkt an Mitglieder der gleichen Array a[i] und a[j] oder ein über das Ende des Arrays, ergibt sie des Vergleichens der Zeiger ist der gleiche wie das Ergebnis des Vergleichs der Indizes: wenn i<j==true dann {{{1}}} .Original:
If the pointers
p
and q
point to members of the same array a[i] and a[j] or one past the end of the array, they results of comparing the pointers is the same as the result of comparing the indexes: if i<j==true then {{{1}}}.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.
4)
Wenn die Zeiger
p
und q
Punkt nicht-statische Datenelemente innerhalb der gleichen Klasse oder anderen Basis Unterobjekte innerhalb derselben abgeleitete Klasse, oder an ihre Mitglieder oder Unterobjekte rekursiv, und wenn die spitzen-to members / Unterobjekte haben die gleiche Zutrittskontrolle (zB sowohl public:
), und die Klasse ist nicht eine Vereinigung, dann der Zeiger auf die später erklärte Unterobjekt / Mitglied im Vergleich größer als der Zeiger auf die bereits deklarierte Unterobjekt / Mitglied. In anderen Worten, die Mitglieder in jeder der drei Zugriffsarten im Speicher in der Reihenfolge der Deklaration positioniert .Original:
If the pointers
p
and q
point to non-static data members within the same class or different base subobjects within the same derived class, or to their members or subobjects, recursively, and if the pointed-to members/subobjects have the same access control (e.g. both public:
), and the class is not a union, then the pointer to the later declared subobject/member compares greater than the pointer to the earlier declared subobject/member. In other words, class members in each of the three access modes are positioned in memory in order of declaration.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.
6)
Wenn die Zeiger
p
und q
Punkt Mitglieder derselben union, diese gleich Vergleichen (typischerweise eine explizite Konvertierung in void* wird für einen der Operanden benötigt)Original:
If the pointers
p
and q
point to members of the same union, they compare equal (typically an explicit conversion to void* is required for one of the operands)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.
7)
Wenn einer der Zeiger ist ein Zeiger auf void und beide Zeiger auf der gleichen Adresse oder beiden Null-Pointer, vergleichen sie gleich .
Original:
If one of the pointers is a pointer to void and both pointers point to the same address or are both null pointers, they compare equal.
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.
8)
Wenn zwei Null-Zeiger-Konstanten verglichen werden, vergleichen sie gleich .
Original:
If two null pointer constants are compared, they compare equal.
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.
9)
Wenn beide Operanden Zeigern auf Elementfunktionen (Objekt oder eine Funktion) sind, vergleichen sie gleich, wenn sie beide auf dem gleichen Mitglied der meisten abgeleiteten Klasse .
Original:
If both operands are pointers to member (object or function), they compare equal if they both point to the same member of the most derived class.
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.
10)
Andernfalls (wenn die Zeiger auf Objekte in unterschiedlichen Arrays, oder um verschiedene Funktionen, oder den Mitgliedern der einen Gegenstand mit unterschiedlichen Zugangskontrolle, usw. zeigen), die Ergebnisse der p<q, p>q, p<=q und p>=q sind nicht spezifiziert, und kehrt p!=q false.
Original:
Otherwise (if the pointers point to objects in different arrays, or to different functions, or to members of some object with different access control, etc), the results of p<q, p>q, p<=q, and p>=q are unspecified, and p!=q returns false.
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.
[Bearbeiten] Beispiel
#include <iostream> struct Foo { int n1; int n2; }; union Union { int n; double d; }; int main() { std::cout << std::boolalpha; char a[4] = "abc"; char* p1 = &a[1]; char* p2 = &a[2]; std::cout << "Pointers to array elements: p1 == p2 " << (p1 == p2) << ", p1 < p2 " << (p1 < p2) << '\n'; Foo f; int* p3 = &f.n1; int* p4 = &f.n2; std::cout << "Pointers to members of a class: p3 == p4 " << (p3 == p4) << ", p3 < p4 " << (p3 < p4) << '\n'; Union u; int* p5 = &u.n; double* p6 = &u.d; std::cout << "Pointers to members of a union: p5 == (void*)p6 " << (p5 == (void*)p6) << ", p5 < p6 " << (p5 < (void*)p6) << '\n'; }
Output:
Pointers to array elements: p1 == p2 false, p1 < p2 true Pointers to members of a class: p3 == p4 false, p3 < p4 true Pointers to members of a union: p5 == (void*)p6 true, p5 < p6 false
[Bearbeiten] Notes
Da diese Operator-Gruppe von links nach rechts, der Ausdruck a<b<c wird (a<b)<c analysiert, und nicht a<(b<c) oder (a<b)&&(b<c) .
Original:
Because these operators group left-to-right, the expression a<b<c is parsed (a<b)<c, and not a<(b<c) or (a<b)&&(b<c).
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.
Eine häufige Anforderung für benutzerdefinierte
operator<
ist strenge schwache Ordnung. Insbesondere wird dies durch den Standard-Algorithmen und Containern, die mit LessThanComparable
Typen arbeiten erforderlich: std::sort, std::max_element, std::map, etc.Original:
A common requirement for user-defined
operator<
is strenge schwache Ordnung. In particular, this is required by the standard algorithms and containers that work with LessThanComparable
types: std::sort, std::max_element, std::map, etc.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.
Obwohl die Ergebnisse des Vergleichens Zeigern von zufälligen Ursprungs (z. B. nicht alle auf Mitglieder der gleichen Array) ist unbegrenzt, bieten viele Implementierungen strenge totale Ordnung von Zeigern, zB wenn sie als Adressen innerhalb kontinuierlichen virtuellen Adressraum implementiert. Diese Implementierungen, die nicht (z. B. bei der nicht alle Bits der Zeiger Teil einer Speicheradresse und muss zum Vergleich ignoriert werden, oder eine zusätzliche Berechnung erforderlich ist oder anderweitig Zeigers und ganze Zahl nicht eine 1 zu 1 Beziehung) liefern ein Spezialisierung std::less für Zeiger, die diese Garantie hat. Dies macht es möglich, alle Zeiger der zufälligen Ursprungs als Schlüssel in Standard-assoziativen Containern wie verwenden std::set oder std::map .
Original:
Although the results of comparing pointers of random origin (e.g. not all pointing to members of the same array) is unspecified, many implementations provide strenge totale Ordnung of pointers, e.g. if they are implemented as addresses within continuous virtual address space. Those implementations that do not (e.g. where not all bits of the pointer are part of a memory address and have to be ignored for comparison, or an additional calculation is required or otherwise pointer and integer is not a 1 to 1 relationship), provide a specialization of std::less for pointers that has that guarantee. This makes it possible to use all pointers of random origin as keys in standard associative containers such as std::set or std::map.
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.
This section is incomplete Reason: equivalence vs. equality |
[Bearbeiten] Standard-Bibliothek
Vergleichsoperatoren sind für viele Klassen in der Standard-Bibliothek überlastet .
Original:
Comparison operators are overloaded for many classes in the standard library.
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.
checks whether the objects refer to the same type (öffentliche Elementfunktion of std::type_info )
| |
vergleicht zwei error_code sOriginal: compares two error_code sThe text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktion) | |
vergleicht error_conditions und error_codes Original: compares error_conditions and error_codes The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktion) | |
vergleicht die Werte in dem Paar lexikographisch Original: lexicographically compares the values in the pair The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktions-Template) | |
lexikographisch vergleicht die Werte in dem Tupel Original: lexicographically compares the values in the tuple The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktions-Template) | |
vergleicht den Inhalt Original: compares the contents The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (öffentliche Elementfunktion of std::bitset )
| |
vergleicht zwei allocator Instanzen Original: compares two allocator instances The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (öffentliche Elementfunktion of std::allocator )
| |
vergleichen zweier unique_ptr bzw. eines unique_ptr mit einem nullptr (Funktions-Template) | |
vergleicht mit einem anderen shared_ptr oder mit nullptr (Funktions-Template) | |
vergleicht eine std::function mit std::nullptr Original: compares an std::function with std::nullptr The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktions-Template) | |
vergleicht zwei Laufzeiten Original: compares two durations The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktions-Template) | |
vergleicht zwei Zeitpunkten Original: compares two time points The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktions-Template) | |
vergleicht zwei scoped_allocator_adaptor Instanzen Original: compares two scoped_allocator_adaptor instances The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (öffentliche Elementfunktion of std::scoped_allocator_adaptor )
| |
vergleicht die zugrundeliegenden std::type_info Objekte Original: compares the underlying std::type_info objects The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (öffentliche Elementfunktion of std::type_index )
| |
vergleicht lexikographisch zwei Strings (Funktions-Template) | |
Gleichheit Vergleich zwischen locale Objekte Original: equality comparison between locale objects The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (öffentliche Elementfunktion of std::locale )
| |
lexikographischer Vergleich der Werte in array (Funktions-Template) | |
lexikographischer Vergleich der Werte in deque (Funktions-Template) | |
lexikographischer Vergleich der Werte in forward_list (Funktions-Template) | |
lexikographischer Vergleich der Werte in list (Funktions-Template) | |
lexikographischer Vergleich der Werte in vector (Funktions-Template) | |
lexikographischer Vergleich der Werte in map (Funktions-Template) | |
lexikographischer Vergleich der Werte in multimap (Funktions-Template) | |
lexikographischer Vergleich der Werte in set (Funktions-Template) | |
lexikographischer Vergleich der Werte in multiset (Funktions-Template) | |
vergleicht die Werte im unordered_map Original: compares the values in the unordered_map The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktions-Template) | |
vergleicht die Werte im unordered_multimap Original: compares the values in the unordered_multimap The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktions-Template) | |
vergleicht die Werte im unordered_set Original: compares the values in the unordered_set The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktions-Template) | |
vergleicht die Werte im unordered_multiset Original: compares the values in the unordered_multiset The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktions-Template) | |
lexikographischer Vergleich der Werte in queue (Funktions-Template) | |
lexikographischer Vergleich der Werte in stack (Funktions-Template) | |
vergleicht zwei reverse_iterators für die Gleichstellung Original: compares two reverse_iterators for equality The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktions-Template) | |
Bestellungen reverse_iterators Original: orders reverse_iterators The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktions-Template) | |
vergleicht zwei move_iterator s Original: compares two move_iterator s The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktions-Template) | |
vergleicht zwei istream_iterators Original: compares two istream_iterators The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktions-Template) | |
vergleicht zwei istreambuf_iterators Original: compares two istreambuf_iterators The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktions-Template) | |
vergleicht zwei komplexen Zahlen oder ein Komplex und ein Skalar Original: compares two complex numbers or a complex and a scalar The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktions-Template) | |
vergleicht zwei valarrays oder eine valarray mit einem Wert Original: compares two valarrays or a valarray with a value The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktions-Template) | |
vergleicht die internen Zustände der zwei Pseudo-Zufallszahlen-Generatoren (Funktion) | |
vergleicht zwei Verteilung Objekte Original: compares two distribution objects The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktion) | |
lexikographisch vergleicht die Werte in dem Behälter Original: lexicographically compares the values in the container The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktion) | |
lexikographisch vergleicht die Werte in den beiden Spiel Ergebnis Original: lexicographically compares the values in the two match result The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktions-Template) | |
vergleicht zwei regex_iterator s Original: compares two regex_iterator s The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktions-Template) | |
vergleicht zwei regex_token_iterator s Original: compares two regex_token_iterator s The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktions-Template) | |
vergleicht zwei thread::id ObjekteOriginal: compares two thread::id objectsThe text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktion) | |
automatically generates comparison operators based on user-defined operator== and operator< (Funktions-Template) |
[Bearbeiten] Siehe auch
Common operators | ||||||
---|---|---|---|---|---|---|
Zuweisungen | incrementNJdecrement | Arithmetik | logisch | Vergleich | memberNJaccess | andererseits |
a = b |
++a |
+a |
!a |
a == b |
a[b] |
a(...) |
Special operators | ||||||
static_cast wandelt einem Typ in einen anderen kompatiblen Typ
Original: static_cast converts one type to another compatible type The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. dynamic_cast wandelt virtuellen Basisklasse abgeleitet class
Original: dynamic_cast converts virtual base class to derived class The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. const_cast wandelt Typ kompatiblen Typ mit unterschiedlichen cv qualifiers
Original: The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. reinterpret_cast wandelt Typ inkompatibel type
Original: reinterpret_cast converts type to incompatible type The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. new ordnet memory
Original: new allocates memory The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. delete freigibt memory
Original: delete deallocates memory The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. sizeof fragt die Größe eines type
Original: sizeof queries the size of a type The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. sizeof... fragt die Größe eines Parameter Pack (seit C++11)
Original: The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. typeid fragt die Typinformationen eines type
Original: typeid queries the type information of a type The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. noexcept prüft, ob ein Ausdruck eine Ausnahme (seit C++11)
werfen kann Original: The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. alignof Abfragen Ausrichtungsanforderungen eines Typs (seit C++11)
Original: alignof queries alignment requirements of a type (seit C++11) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |