operator!= (<deque>)

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

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

参数

  • _Left
    deque 类型的对象。

  • _Right
    deque 类型的对象。

返回值

true,如果 deque 对象不相等;false,如果 deque 对象相等。

备注

在 deque 对象之间的比较基于元素的一种比较成对。 deque 两个对象相等,如果变量具有相同数量的元素,它们各自的元素具有相同的值。 否则为不相等。

示例

// deque_op_ne.cpp
// compile with: /EHsc
#include <deque>
#include <iostream>

int main( ) 
{
   using namespace std; 
   deque <int> c1, c2;

   c1.push_back( 1 );
   c2.push_back( 2 );

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

要求

标头: <deque>

命名空间: std

请参见

参考

标准模板库