運算子 < = (hash_set)
測試,如果在運算子的左邊 hash_set 物件小於或等於右邊的 hash_set 物件。
bool operator!<=(
const hash_set <Key, Traits, Allocator>& _Left,
const hash_set <Key, Traits, Allocator>& _Right
);
參數
_Left
型別 hash_set 的物件。_Right
型別 hash_set 的物件。
傳回值
true ,如果在運算子的左邊 hash_set 小於或等於 hash_set 在運算子的右邊,否則 false。
備註
在 hash_set 物件之間的比較可能會依據其項目比較配對方式。 小於或等於兩個物件之間的關聯性會在第一次對的比較不相等的項目。
在 Visual C++ .NET 2003 中, <hash_map> 和 <hash_set> 標頭檔 (Header File) 的成員不再位於 std 命名空間中,不過,移至 stdext 命名空間。 如需詳細資訊,請參閱 stdext 命名空間。
範例
// hash_set_op_le.cpp
// compile with: /EHsc
#define _DEFINE_DEPRECATED_HASH_CLASSES 0
#include <hash_set>
#include <iostream>
int main( )
{
using namespace std;
using namespace stdext;
hash_set <int> hs1, hs2, hs3, hs4;
int i;
for ( i = 0 ; i < 3 ; i++ )
{
hs1.insert ( i );
hs2.insert ( i * i );
hs3.insert ( i - 1 );
hs4.insert ( i );
}
if ( hs1 <= hs2 )
cout << "Hash_set hs1 is less than or equal to hash_set hs2." << endl;
else
cout << "Hash_set hs1 is greater than hash_set hs2." << endl;
if ( hs1 <= hs3 )
cout << "Hash_set hs1 is less than or equal to hash_set hs3." << endl;
else
cout << "Hash_set hs1 is greater than hash_set hs3." << endl;
if ( hs1 <= hs4 )
cout << "Hash_set hs1 is less than or equal to hash_set hs4." << endl;
else
cout << "Hash_set hs1 is greater than hash_set hs4." << endl;
}
需求
標題: <hash_set>
命名空間: stdext