function::operator()
Chama um objeto acessível.
result_type operator()(T1 t1, T2 t2, ..., TN tN);
Parâmetros
TN
O tipo de argumento Nth de chamada.tN
O Nth argumento de chamada.
Comentários
A função de membro retorna INVOKE(fn, t1, t2, ..., tN, Ret), onde fn é o objeto alvo armazenado em *this.Você usá-la para chamar o objeto acessível definido.
Exemplo
// std_tr1__functional__function_operator_call.cpp
// compile with: /EHsc
#include <functional>
#include <iostream>
int neg(int val)
{
return (-val);
}
int main()
{
std::function<int (int)> fn1(neg);
std::cout << std::boolalpha << "empty == " << !fn1 << std::endl;
std::cout << "val == " << fn1(3) << std::endl;
return (0);
}
Requisitos
Cabeçalho: <functional>
namespace: STD