Partilhar via


multiset::make_value (STL/CLR)

Cria um objeto de valor.

    static value_type make_value(key_type key);

Parâmetros

  • key
    Valor de chave a ser usado.

Comentários

A função de membro retorna um objeto de value_type cuja chave é key. Use-a para compor um objeto apropriado para uso com várias outras funções de membro.

Exemplo

// cliext_multiset_make_value.cpp 
// compile with: /clr 
#include <cliext/set> 
 
typedef cliext::multiset<wchar_t> Mymultiset; 
int main() 
    { 
    Mymultiset c1; 
    c1.insert(Mymultiset::make_value(L'a')); 
    c1.insert(Mymultiset::make_value(L'b')); 
    c1.insert(Mymultiset::make_value(L'c')); 
 
// display contents " a b c" 
    for each (Mymultiset::value_type elem in c1) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
    return (0); 
    } 
 
  

Requisitos

cliext </conjunto deCabeçalho: >

cliext deNamespace:

Consulte também

Referência

multiset (STL/CLR)

multiset::key_type (STL/CLR)

multiset::value_type (STL/CLR)