Partager via


binary_delegate (STL/CLR)

La classe générique décrit un délégué à deux arguments. Vous l'utiliserez pour spécifier un délégué par son argument et le type de son résultat.

generic<typename Arg1,
    typename Arg2,
    typename Result>
    delegate Result binary_delegate(Arg1, Arg2);

Paramètres

  • Arg1
    Type du premier argument.

  • Arg2
    Le type du second argument.

  • Résultat
    Le type du résultat.

Notes

Le délégué générique décrit une fonction à deux arguments.

Notez que pour :

binary_delegate<int, int, int> Fun1;

binary_delegate<int, int, int> Fun2;

les types Fun1 et Fun2 sont synonymes, tandis que pour:

delegate int Fun1(int, int);

delegate int Fun2(int, int);

ils ne sont pas du même type.

Exemple

// cliext_binary_delegate.cpp 
// compile with: /clr 
#include <cliext/functional> 
 
bool key_compare(wchar_t left, wchar_t right) 
    { 
    return (left < right); 
    } 
 
typedef cliext::binary_delegate<wchar_t, wchar_t, bool> Mydelegate; 
int main() 
    { 
    Mydelegate^ kcomp = gcnew Mydelegate(&key_compare); 
 
    System::Console::WriteLine("compare(L'a', L'a') = {0}", 
        kcomp(L'a', L'a')); 
    System::Console::WriteLine("compare(L'a', L'b') = {0}", 
        kcomp(L'a', L'b')); 
    System::Console::WriteLine("compare(L'b', L'a') = {0}", 
        kcomp(L'b', L'a')); 
    System::Console::WriteLine(); 
    return (0); 
    } 
 
  

Configuration requise

En-tête : <cliext/functional>

Espace de noms cliext

Voir aussi

Référence

binary_delegate_noreturn (STL/CLR)

unary_delegate (STL/CLR)

unary_delegate_noreturn (STL/CLR)