operator!= (multiset)
Sprawdza, czy zestaw wielokrotny obiektu po lewej stronie operatora nie równa się zestaw wielokrotny obiektu po prawej stronie.
bool operator!=(
const multiset <Key, Traits, Allocator>& _Left,
const multiset <Key, Traits, Allocator>& _Right
);
Parametry
_Left
Obiekt typu multiset._Right
Obiekt typu multiset.
Wartość zwracana
TRUE zestawy lub multisets nie są równe; false multisets lub zestawy są równe.
Uwagi
Porównanie między obiektami wielostopniowy opiera się na parowania porównania między ich elementami.Dwa zestawy lub multisets są równe, jeśli mają taką samą liczbę elementów i ich odpowiednich elementów mają te same wartości.W przeciwnym razie są nierówne.
Przykład
// multiset_op_ne.cpp
// compile with: /EHsc
#include <set>
#include <iostream>
int main( )
{
using namespace std;
multiset <int> s1, s2, s3;
int i;
for ( i = 0 ; i < 3 ; i++ )
{
s1.insert ( i );
s2.insert ( i * i );
s3.insert ( i );
}
if ( s1 != s2 )
cout << "The multisets s1 and s2 are not equal." << endl;
else
cout << "The multisets s1 and s2 are equal." << endl;
if ( s1 != s3 )
cout << "The multisets s1 and s3 are not equal." << endl;
else
cout << "The multisets s1 and s3 are equal." << endl;
}
Wymagania
Nagłówek: <set>
Przestrzeń nazw: std