implementation是什么? ( 积分: 10 )

  • 主题发起人 主题发起人 emeng
  • 开始时间 开始时间
E

emeng

Unregistered / Unconfirmed
GUEST, unregistred user!
请高手帮忙解释一下implementation 的功能和用法,谢谢,小弟是新手
 
帮你顶,接个小分
 
implementation是个好东西
 
自己顶一下
 
没人说 分给谁啊
 
implementation?
DELPHI代码部分,一般分很多区域吧,
unit Unit1;//单元

interface//接口

uses //引用单元
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs;

type //类型
TForm1 = class(TForm)
private //私有
{ Private declarations }
public //公共
{ Public declarations }
end;

var //变量声明
Form1: TForm1;

implementation //执行部分

{$R *.DFM}

end.
具体功能,用法不了解...哈哈!
 
建议楼主先去看一本基础入门书
 
unit unit1;

interface

uses ..

type
TTest = class(TCanvas)
private
procedure Foo();
end;

var
List: TStrings;

//这之前写声明代码
implementation
//这之后写实现代码

procedure TTest.Foo();
begin
...
end;

initialization //这里写初始化代码,程序执行时第一个就调用这里
List:= TStringList.Create;
List.Add('hello');
finalization //这里写释放代码
List.Free;
end.
 
找一本标准Pascal语言的书来看吧,不要看Delphi的教材。
 
打了一大段没了,不想打了
 
多人接受答案了。
 
后退
顶部