unary_delegate_noreturn (STL/CLR)
La classe genereic descrive un delegato dell'un-argomento che restituisce void.Utilizzarla si specifica un delegato in termini di tipo di argomento.
generic<typename Arg>
delegate void unary_delegate_noreturn(Arg);
Parametri
- Argomento
Tipo dell'argomento.
Note
Il delegato genereic descrive una funzione dell'un-argomento che restituisce void.
Si noti che per:
unary_delegare_noreturn<int> Fun1;
unary_delegare_noreturn<int> Fun2;
i tipi Fun1 e Fun2 sono sinonimi, mentre per:
delegate void Fun1(int);
delegate void Fun2(int);
non sono dello stesso tipo.
Esempio
// cliext_unary_delegate_noreturn.cpp
// compile with: /clr
#include <cliext/functional>
void hash_val(wchar_t val)
{
System::Console::WriteLine("hash({0}) = {1}",
val, (val * 17 + 31) % 67);
}
typedef cliext::unary_delegate_noreturn<wchar_t> Mydelegate;
int main()
{
Mydelegate^ myhash = gcnew Mydelegate(&hash_val);
myhash(L'a');
myhash(L'b');
return (0);
}
Requisiti
intestazione: <cliext/funzionale>
Cliext diSpazio dei nomi: