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