binder1st (STL/CLR)
A classe de modelo descreve um functor um argumento que, quando chamado, retorna sua functor dois argumentos armazenado chamado com seu primeiro argumento armazenado e o segundo argumento fornecido.Use-especificar um objeto de função em termos de sua functor armazenado.
template<typename Fun>
ref class binder1st
{ // wrap operator()
public:
typedef Fun stored_function_type;
typedef typename Fun::first_argument_type first_argument_type;
typedef typename Fun::second_argument_type second_argument_type;
typedef typename Fun:result_type result_type;
typedef Microsoft::VisualC::StlClr::UnaryDelegate<
second_argument_type, result_type>
delegate_type;
binder1st(Fun% functor, first_argument_type left);
binder1st(binder1st<Arg>% right);
result_type operator()(second_argument_type right);
operator delegate_type^();
};
Parâmetros
- Diversão
O tipo de functor armazenado.
Funções de membro
Definição de tipo |
Descrição |
---|---|
delegate_type |
O tipo de delegado genérico. |
first_argument_type |
O tipo do primeiro argumento functor. |
result_type |
O tipo de resultado de functor. |
second_argument_type |
O tipo do segundo argumento functor. |
stored_function_type |
Tipo de functor. |
Membro |
Descrição |
---|---|
binder1st |
Constrói o functor. |
Operator |
Descrição |
---|---|
Operator() |
Calcula a função desejada. |
operador delegate_type^() |
Projeta o functor a um delegado. |
Comentários
A classe de modelo descreve um functor um argumento que armazena um functor dois argumentos e o primeiro argumento.Ele define o operador de membro operator() para que, quando o objeto é chamado como uma função, ela retorna o resultado de chamar o functor armazenado com o primeiro argumento armazenado e o segundo argumento fornecido.
Você também pode passar o objeto como um argumento de função cujo tipo é delegate_type^ e serão convertido corretamente.
Exemplo
// cliext_binder1st.cpp
// compile with: /clr
#include <cliext/algorithm>
#include <cliext/functional>
#include <cliext/vector>
typedef cliext::vector<int> Myvector;
int main()
{
Myvector c1;
c1.push_back(4);
c1.push_back(3);
Myvector c3(2, 0);
// display initial contents " 4 3"
for each (int elem in c1)
System::Console::Write(" {0}", elem);
System::Console::WriteLine();
// transform and display
cliext::minus<int> sub_op;
cliext::binder1st<cliext::minus<int> > subfrom3(sub_op, 3);
cliext::transform(c1.begin(), c1.begin() + 2, c3.begin(),
subfrom3);
for each (int elem in c3)
System::Console::Write(" {0}", elem);
System::Console::WriteLine();
// transform and display with function
cliext::transform(c1.begin(), c1.begin() + 2, c3.begin(),
bind1st(sub_op, 3));
for each (int elem in c3)
System::Console::Write(" {0}", elem);
System::Console::WriteLine();
return (0);
}
Requisitos
Cabeçalho: < cliext/funcional >
Namespace: cliext