operator!= (multiset)

测试,如果运算符左侧的多重集对象与右侧的多重集对象不等于。

bool operator!=( 
   const multiset <Key, Traits, Allocator>& _Left, 
   const multiset <Key, Traits, Allocator>& _Right 
);

参数

  • _Left
    multiset 类型的对象。

  • _Right
    multiset 类型的对象。

返回值

true 集还是多重集,则不相等;如果设置 false,还是多重集等于的。

备注

如果在多重集对象之间的比较。根据其元素之间存在着成对地比较。 两个集还是多重集等于的,则它们具有相同数量的元素,它们各自的元素具有相同的值。 否则为不相等。

示例

// 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;
}
  

要求

标头: <set>

命名空间: std

请参见

参考

标准模板库