Compartilhar via


unary_delegate (STL/CLR)

A classe genereic descreve um delegado de um argumento.Use-especificar um representante em termos de seus tipos de argumento e retornar.

generic<typename Arg,
    typename Result>
    delegate Result unary_delegate(Arg);

Parâmetros

  • Arg.
    O tipo do argumento.

  • Resultado
    O tipo de retorno.

Comentários

O delegado genereic descreve uma função de um argumento.

Observe que para:

unary_delegare<int, int> Fun1;

unary_delegare<int, int> Fun2;

tipos de Fun1 e Fun2 são sinônimos, enquanto para:

delegate int Fun1(int);

delegate int Fun2(int);

eles não são do mesmo tipo.

Exemplo

// cliext_unary_delegate.cpp 
// compile with: /clr 
#include <cliext/functional> 
 
int hash_val(wchar_t val) 
    { 
    return ((val * 17 + 31) % 67); 
    } 
 
typedef cliext::unary_delegate<wchar_t, int> Mydelegate; 
int main() 
    { 
    Mydelegate^ myhash = gcnew Mydelegate(&hash_val); 
 
    System::Console::WriteLine("hash(L'a') = {0}", myhash(L'a')); 
    System::Console::WriteLine("hash(L'b') = {0}", myhash(L'b')); 
    return (0); 
    } 
 
  

Requisitos

Cabeçalho: < cliext/funcional >

Namespace: cliext

Consulte também

Referência

binary_delegate (STL/CLR)

binary_delegate_noreturn (STL/CLR)

unary_delegate_noreturn (STL/CLR)