運算子 < = (hash_multimap)
測試,如果左側的 hash_multimap 物件小於或等於右邊的 hash_multimap 物件。
bool operator<=(
const hash_multimap <Key, Type, Traits, Allocator>& _Left,
const hash_multimap <Key, Type, Traits, Allocator>& _Right
);
參數
_Left
型別 hash_multimap 的物件。_Right
型別 hash_multimap 的物件。
傳回值
true ,如果左側的 hash_multimap 小於或等於 hash_multimap 在運算子的右邊,否則 false。
註解
在 hash_multimap 物件之間的比較可能會依據其項目比較配對方式。 小於或等於兩個物件之間的關聯性會在第一次對的比較不相等的項目。
在 Visual C++ .NET 2003 中, <hash_map> 和 <hash_set> 標頭檔 (Header File) 的成員不再位於 std 命名空間中,不過,移至 stdext 命名空間。 如需詳細資訊,請參閱 stdext 命名空間。
範例
// hash_multimap_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_multimap <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_multimap hm1 is less than or equal to the hash_multimap hm2." << endl;
else
cout << "The hash_multimap hm1 is greater than the hash_multimap hm2." << endl;
if ( hm1 <= hm3 )
cout << "The hash_multimap hm1 is less than or equal to the hash_multimap hm3." << endl;
else
cout << "The hash_multimap hm1 is greater than the hash_multimap hm3." << endl;
if ( hm1 <= hm4 )
cout << "The hash_multimap hm1 is less than or equal to the hash_multimap hm4." << endl;
else
cout << "The hash_multimap hm1 is greater than the hash_multimap hm4." << endl;
}
需求
標題: <hash_map>
命名空間: stdext