一个简单的类 DELPHI(20分)

  • 主题发起人 主题发起人 Fucool
  • 开始时间 开始时间
F

Fucool

Unregistered / Unconfirmed
GUEST, unregistred user!
请大家给一个DELPHI简单的类示例:包括属性,方法,事件。
希望有说明//刚用DELPHI 两天什么都不懂。
请大家多指教。
看了一点书,发现DELPHI实现一个类还挺麻烦,,
远不如象VB 要写一个类比较容易。 (当然是相对简单)
 
自己看VCL
 
TMyClass = class(TObject)
private
procedure MyProcedure

function MyFunction: string;
protected
property MyProperty: string read MyFunction;
public
constructor Create
override;
destructor Destroy
override;
published
end;


这就一个类的声明, VB怎能和Delphi比.
 
TMyClass = class(TObject)
第一句就错了。。。。。。
 
你不会没有加
Type吧!
 
还有uses class;
 
老弟,不会要连 type 也帮你写了吧?
type
TMyClass = class(TObject)
.
.
.
end;
 
写得很好啊,type,uses
这是最基本的,没必要写出来
 
type //没有写这个
TMyClass = class(TObject)
.
.
.
end;
多谢谢大家,花了1个小时,总算搞清了。。。。。
 
多人接受答案了。
 
后退
顶部