共用方式為


binary_delegate (STL/CLR)

Genereic 類別會描述兩個引數的委派。 您可以使用它指定在其引數和傳回型別方面委派。

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

參數

  • Arg1
    第一個引數型別。

  • Arg2
    第二個引數的型別。

  • 結果
    傳回類型。

備註

Genereic 委派將告訴您兩個引數的函式。

請注意,如:

binary_delegate<int, int, int> Fun1;

binary_delegate<int, int, int> Fun2;

型別Fun1和Fun2是同義詞,雖然為:

delegate int Fun1(int, int);

delegate int Fun2(int, int);

它們並不相同的型別。

範例

// 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); 
    } 
 
  

需求

標頭: < cliext/功能 >

Namespace: cliext

請參閱

參考

binary_delegate_noreturn (STL/CLR)

unary_delegate (STL/CLR)

unary_delegate_noreturn (STL/CLR)