TComponent::EndInvoke - C++ Builder

C++ Builder 参考手册 ➙ TComponent ➙ EndInvoke


头文件:#include
命名空间:System::Classes
类:TComponent
访问权限:public:
函数原型:

void __fastcall EndInvoke(
    const System::Types::_di_IAsyncResult ASyncResult);

template 
TResult __fastcall EndInvoke(
    const System::Types::_di_IAsyncResult AsyncResult);

System::Classes::TComponent::EndInvoke是 System::Classes::TComponent 的成员函数,

参数:

AsyncResult:异步执行的状态,这个参数是 BeginInvoke 的返回值。

返回值:

无 (有返回值的模板版本的函数测试未通过,详见下面的说明)。

  • 等待 BeginInvoke 发起的异步执行的函数执行结束;
  • 有返回值的模板版本的函数测试未通过,编译通过但是 link 的时候找不到函数的实现,没有返回值的版本的函数执行正常,如果要获取异步执行的函数的返回值,需要用 EndFunctionInvoke 方法;
  • EndInvoke 会抛出在异步执行当中发生的异常。

例子:

请参考 TComponent::BeginInvoke 的例子,是 BeginInvoke、EndInvoke 和 EndFunctionInvoke 的示例程序。


参考:

  • System::Classes::TComponent::BeginInvoke
  • System::Classes::TComponent::EndFunctionInvoke
  • System::Classes::TComponent
  • System::Classes::TPersistent
  • System::TObject
  • VCL 类继承关系

C++ Builder 参考手册 ➙ TComponent ➙ EndInvoke

你可能感兴趣的:(TComponent::EndInvoke - C++ Builder)