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