operator== (<list>)
测试运算符左侧的列表对象是否等于右侧的列表对象。
bool operator==( const list<Type, Allocator>& _Left, const list<Type, Allocator>& _Right );
参数
_Left
类型 list 的对象。_Right
类型 list 的对象。
返回值
如果运算符左侧的列表等于运算符右侧的列表,则为 true,否则为 false。
备注
列表对象之间的比较基于其元素的成对比较。 如果两个列表具有的元素数目相等且对应元素具有相同的值,则两个列表相等。 否则,它们不相等。
示例
// list_op_eq.cpp
// compile with: /EHsc
#include <list>
#include <iostream>
int main( )
{
using namespace std;
list <int> c1, c2;
c1.push_back( 1 );
c2.push_back( 1 );
if ( c1 == c2 )
cout << "The lists are equal." << endl;
else
cout << "The lists are not equal." << endl;
}
要求
标头:<list>
命名空间: std