operator== (<list>)
測試運算子左邊的清單物件是否等於右邊的清單物件。
bool operator==( const list<Type, Allocator>& _Left, const list<Type, Allocator>& _Right );
參數
_Left
list 類型的物件。_Right
list 類型的物件。
傳回值
若運算子左邊的 list 等於右邊的 list 為 true;反之為 false。
備註
list 物件之間的比較是以其元素的成對比較為基礎。 如果有相同數目的元素,且個別元素擁有相同的值,則兩個清單相等。 反之則為不相等。
範例
// 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