hash_multimap::make_value (STL/CLR)
Construye un objeto value.
static value_type make_value(key_type key, mapped_type mapped);
Parámetros
clave
Valor de clave a utilizar.asignado
Valor asignado a buscar.
Comentarios
La función miembro devuelve un objeto de value_type cuya clave se key y cuyo asignaban valor son mapped.Se utiliza para crear un objeto adecuado para el uso con otras funciones miembro.
Ejemplo
// cliext_hash_multimap_make_value.cpp
// compile with: /clr
#include <cliext/hash_map>
typedef cliext::hash_multimap<wchar_t, int> Myhash_multimap;
int main()
{
Myhash_multimap c1;
c1.insert(Myhash_multimap::make_value(L'a', 1));
c1.insert(Myhash_multimap::make_value(L'b', 2));
c1.insert(Myhash_multimap::make_value(L'c', 3));
// display contents " [a 1] [b 2] [c 3]"
for each (Myhash_multimap::value_type elem in c1)
System::Console::Write(" [{0} {1}]", elem->first, elem->second);
System::Console::WriteLine();
return (0);
}
Requisitos
encabezado: <cliext/hash_map>
Cliext deespacio de nombres:
Vea también
Referencia
hash_multimap::key_type (STL/CLR)