Share via


hash_multimap::value_comp (STL/CLR)

Copia il delegato dell'ordine per due valori dell'elemento.

    value_compare^ value_comp();

Note

La funzione membro restituisce il delegato dell'ordine utilizzato per ordinare la sequenza selezionata.Viene utilizzato per confrontare due valori dell'elemento.

Esempio

// cliext_hash_multimap_value_comp.cpp 
// compile with: /clr 
#include <cliext/hash_map> 
 
typedef cliext::hash_map<wchar_t, int> Myhash_multimap; 
int main() 
    { 
    Myhash_multimap c1; 
    Myhash_multimap::value_compare^ kcomp = c1.value_comp(); 
 
    System::Console::WriteLine("compare([L'a', 1], [L'a', 1]) = {0}", 
        kcomp(Myhash_multimap::make_value(L'a', 1), 
            Myhash_multimap::make_value(L'a', 1))); 
    System::Console::WriteLine("compare([L'a', 1], [L'b', 2]) = {0}", 
        kcomp(Myhash_multimap::make_value(L'a', 1), 
            Myhash_multimap::make_value(L'b', 2))); 
    System::Console::WriteLine("compare([L'b', 2], [L'a', 1]) = {0}", 
        kcomp(Myhash_multimap::make_value(L'b', 2), 
            Myhash_multimap::make_value(L'a', 1))); 
    System::Console::WriteLine(); 
    return (0); 
    } 
 
  

Requisiti

intestazione: <cliext/hash_map>

Cliext diSpazio dei nomi:

Vedere anche

Riferimenti

hash_multimap (STL/CLR)

hash_multimap::value_compare (STL/CLR)

hash_multimap::value_type (STL/CLR)