operator<= (<list>)
測試運算子左邊的清單物件是否小於或等於右邊的清單物件。
bool operator<=( const list<Type, Allocator>& _Left, const list<Type, Allocator>& _Right );
參數
_Left
list 類型的物件。_Right
list 類型的物件。
傳回值
若運算子左邊的清單小於或等於右邊的清單為 true;反之為 false。
備註
list 物件之間的比較是以其元素的成對比較為基礎。 兩個物件之間的小於或等於關聯性,是根據第一對不相等元素的比較。
範例
// list_op_le.cpp
// compile with: /EHsc
#include <list>
#include <iostream>
int main( )
{
using namespace std;
list <int> c1, c2;
c1.push_back( 1 );
c1.push_back( 2 );
c1.push_back( 4 );
c2.push_back( 1 );
c2.push_back( 3 );
if ( c1 <= c2 )
cout << "List c1 is less than or equal to list c2." << endl;
else
cout << "List c1 is greater than list c2." << endl;
}
需求
標頭:<list>
命名空間: std