Condividi tramite


hash_set::key_compare (STL/CLR)

Il delegato dell'ordine per due chiavi.

    Microsoft::VisualC::StlClr::BinaryDelegate<GKey, GKey, bool>
        key_compare;

Note

Il tipo è sinonimo del delegato che determina l'ordine dei relativi argomenti principali.

Esempio

// cliext_hash_set_key_compare.cpp 
// compile with: /clr 
#include <cliext/hash_set> 
 
typedef cliext::hash_set<wchar_t> Myhash_set; 
int main() 
    { 
    Myhash_set c1; 
    Myhash_set::key_compare^ kcomp = c1.key_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(); 
 
// test a different ordering rule 
    Myhash_set c2 = cliext::greater<wchar_t>(); 
    kcomp = c2.key_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')); 
    return (0); 
    } 
 
  

Requisiti

intestazione: <cliext/hash_set>

Cliext diSpazio dei nomi:

Vedere anche

Riferimenti

hash_set (STL/CLR)

hash_set::key_comp (STL/CLR)

hash_set::key_type (STL/CLR)

hash_set::value_compare (STL/CLR)