码迷,mamicode.com
首页 > Windows程序 > 详细

delphi class of 类引用

时间:2017-10-24 14:59:24      阅读:330      评论:0      收藏:0      [点我收藏+]

标签:资料   有用   sre   logs   pos   方法   result   com   phi   

http://www.cnblogs.com/yangxuming/p/6707459.html

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或其父类的指针

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

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

 

 

在程序编译时期,想要利用类别名称或特件来呼叫类别方法。或虚拟建构函式,可是却又不知道类别或物件的真正资料型别,这时候类别参考就非常有用了

delphi class of 类引用

标签:资料   有用   sre   logs   pos   方法   result   com   phi   

原文地址:http://www.cnblogs.com/zhangzhifeng/p/7723327.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!