oop – 在运行时实现接口有什么好处?

前端之家收集整理的这篇文章主要介绍了oop – 在运行时实现接口有什么好处?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在努力了解 TVirtualInterface课程.
{$APPTYPE CONSOLE}

uses
  SysUtils,Rtti;

type
  ISpecificInterface = interface(IInvokable)
    ['{281D8B97-397E-430A-895A-9CA4E1F5FB5F}']
    procedure SpecificProcedure;
  end;

procedure AProcedure(Method: TRttiMethod; const Args: TArray<TValue>;
  out Result: TValue);
begin
  Writeln(Method.ToString);
end;

var
  ISpecificInterfaceInstance: ISpecificInterface;

begin
  ISpecificInterfaceInstance := TVirtualInterface.Create
    (TypeInfo(ISpecificInterface),AProcedure) as ISpecificInterface;

  ISpecificInterfaceInstance.SpecificProcedure;

end. // TVirtualInterface ref. counter is decremented

在运行时实现接口有什么好处?

空间的用途是什么?

解决方法

描述是 here

Provides functionality for remote procedure call marshaling…

原文链接:https://www.f2er.com/delphi/239355.html

猜你在找的Delphi相关文章