zoukankan      html  css  js  c++  java
  • delphi class of 类引用

    Type
      TControlCls = Class of TControl;
    function CreateComponent(ControlCls: TControlCls): TControl;
    begin
      result:=ControlCls.Create(Form1);
      ...
    end;
    function CreateComponent(ControlCls: TControl): TControl;
    begin
      result:=ControlCls.Create(Form1);
      ...
    end;

    前者要求传入一个 类, 而后者要求传入一个 对象(类的实例)
    type
    MyClassRef=calss of CMyClass //表示MyClassRef为指向CMyClass或其父类的指针

    类的引用就像指向类的指针一样
    类引用就是类的类型,可以声明一个类引用变量赋给它一个类,可以通过这个变量创建对象的实例。

    类之类
    当你不确定调用的类模型时候用到类之类。
    也可以说是类指针~

  • 相关阅读:
    有限元方法的核心思想
    由拉格朗日函数推导守恒定律
    codeforces 1181D
    gym 102222 J
    COJ#10C
    已然逝去の夏日泳装
    NC50 E
    codeforces 1147 C
    agc 037 C
    19牛客多校第十场G
  • 原文地址:https://www.cnblogs.com/yangxuming/p/6707459.html
Copyright © 2011-2022 走看看