operator!= (<list>)

测试运算符左侧的列表对象是否不等于右侧的列表对象。

bool operator!=(    const list<Type, Allocator>& _Left,    const list<Type, Allocator>& _Right );

参数

  • _Left
    类型 list 的对象。

  • _Right
    类型 list 的对象。

返回值

如果列表不相等,则为 true;如果列表相等,则为 false

备注

列表对象之间的比较基于其元素的成对比较。 如果两个列表具有的元素数目相等且对应元素具有相同的值,则两个列表相等。 否则,它们不相等。

示例

// list_op_ne.cpp
// compile with: /EHsc
#include <list>
#include <iostream>

int main( ) 
{
   using namespace std; 
   list <int> c1, c2;
   c1.push_back( 1 );
   c2.push_back( 2 );

   if ( c1 != c2 )
      cout << "Lists not equal." << endl;
   else
      cout << "Lists equal." << endl;
}
  

要求

标头:<list>

命名空间: std

请参见

参考

list 类

标准模板库