hash_multiset::value_comp (STL/CLR)

將複製兩個項目值的順序的委派。

    value_compare^ value_comp();

備註

成員函式會傳回用於排序受控制的序列的順序委派。您可以用它來比較兩個項目值。

範例

// cliext_hash_multiset_value_comp.cpp 
// compile with: /clr 
#include <cliext/hash_set> 
 
typedef cliext::hash_multiset<wchar_t> Myhash_multiset; 
int main() 
    { 
    Myhash_multiset c1; 
    Myhash_multiset::value_compare^ kcomp = c1.value_comp(); 
 
    System::Console::WriteLine("compare(L'a', L'a') = {0}", 
        kcomp(L'a', L'a')); 
    System::Console::WriteLine("compare(L'a', L'b') = {0}", 
        kcomp(L'a', L'b')); 
    System::Console::WriteLine("compare(L'b', L'a') = {0}", 
        kcomp(L'b', L'a')); 
    System::Console::WriteLine(); 
    return (0); 
    } 
 
  

需求

標頭: < cliext/hash_set >

Namespace: cliext

請參閱

參考

hash_multiset (STL/CLR)

hash_multiset::value_compare (STL/CLR)

hash_multiset::value_type (STL/CLR)