C++ Builder 参考手册 ➙ System::Sysutils ➙ _di_TFunc__4
头文件:#include <System.SysUtils.hpp>
命名空间:System::Sysutils
类型定义:
template<typename T1, typename T2, typename T3, typename TResult>
using _di_TFunc__4 = System::DelphiInterface<TFunc__4<T1, T2, T3, TResult>>;
C++ 匿名函数 / lambda 表达式接口:有 3 个参数:T1, T2, T3、返回值 TResult 的匿名函数 / lambda 表达式,C++ Builder 采用这个接口让 lambda 表达式与 Delphi 的匿名函数兼容。
参数:这个 lambda 表达式或匿名函数有 3 个参数,类型分别为 T1, T2, T3;
返回值:TResult 类型。
- 调用 _di_TFunc__4::Invoke(); 可以执行 lambda 表达式。
- 如果函数的参数是这个类型的,可以采用继承 System::TCppInterfacedObject<TFunc__4<T1, T2, T3, TResult>> 并且重载 Invoke 函数作为这个参数来代替 lambda 表达式,请参考本文后面及 TThread::CreateAnonymousThread 的例子。
- 使用 _di_TFunc__4 这个类型需要 clang 编译器
例1:写一个函数 MyFunc,参数为与 Delphi 匿名函数兼容的 lambda 表达式,lambda 表达式有一个 UnicodeString 和 两个 int 类型的参数
在 Form1 上放一个 Memo 和一个 Button,在 Button 的 OnClick 事件里面执行 MyFunc 函数,第一个参数为 TStrings *,第二个参数为有一个 UnicodeString 和两个 int 参数的 lambda 表达式;MyFunc 函数类似于 for_each 枚举 pStrings 里面所有的行,每一行调用一次 lambda 表达式,传入这一行文字内容、行号和总行数,如果 lambda 返回值为 false,停止接下来的输出:
void TForm1::MyFunc(TStrings *pStrings, _di_TFunc__4<UnicodeString, int, int, bool> pLambda)
{
int iCount = pStrings->Count;
for(int iIndex=0; iIndex<iCount; iIndex++)
{
if(!pLambda->Invoke(pStrings->Strings[iIndex], iIndex, iCount))
break;
}
}
//---------------------------------------------------------------------------
void __fastcall TForm1::Button1Click(TObject *Sender)
{
MyFunc(Memo1->Lines, [this](UnicodeString sLine, int iIndex, int iCount)->bool {
ShowMessage(L"共" + IntToStr(iCount) + L"行,第" + IntToStr(iIndex+1) + L"行:" + sLine);
return true;
});
}
执行结果:Memo1 里面有两行文字:"Hello, Hsuanlu!" 和 "玄坴,你好!",点击按钮,在 MyFunc 里面执行了 2 次 lambda 表达式,分别为这两行文字的内容和行号,可以看到执行结果为两次弹出消息框,分别为 "第1行:Hello, Hsuanlu!" 和 "第2行:玄坴,你好!"
例2:依然是前面例1的 MyFunc 函数,不用 lambda 表达式,采用继承 System::TCppInterfacedObject<TFunc__4<T1, T2, T3, TResult>> 的方法调用这个函数
void TForm1::MyFunc(TStrings *pStrings, _di_TFunc__4<UnicodeString, int, int, bool> pLambda)
{
int iCount = pStrings->Count;
for(int iIndex=0; iIndex<iCount; iIndex++)
{
if(!pLambda->Invoke(pStrings->Strings[iIndex], iIndex, iCount))
break;
}
}
class TMyProc : public TCppInterfacedObject<TFunc__4<UnicodeString, int, int, bool>>
{
public:
bool __fastcall Invoke(UnicodeString sLine, int iIndex, int iCount) // 这里是调用 lambda 执行的内容
{
ShowMessage(L"共" + IntToStr(iCount) + L"行,第" + IntToStr(iIndex+1) + L"行:" + sLine);
return true;
}
};
//---------------------------------------------------------------------------
void __fastcall TForm1::Button1Click(TObject *Sender)
{
MyFunc(Memo1->Lines, new TMyProc); // 用 TMyProc 对象代替 lambda,自动销毁
}
相关:
- System::Sysutils::_di_TFunc__1
- System::Sysutils::_di_TFunc__2
- System::Sysutils::_di_TFunc__3
- System::Sysutils::_di_TFunc__4
- System::Sysutils::_di_TFunc__5
- System::Sysutils::_di_TPredicate__1
- System::Sysutils::_di_TProc
- System::Sysutils::_di_TProc__1
- System::Sysutils::_di_TProc__2
- System::Sysutils::_di_TProc__3
- System::Sysutils::_di_TProc__4
- System::Sysutils
- System::TCppInterfacedObject
- System::DelphiInterface
- System
- TThread::CreateAnonymousThread
C++ Builder 参考手册 ➙ System::Sysutils ➙ _di_TFunc__4