Y
yunerstudio
Unregistered / Unconfirmed
GUEST, unregistred user!
为什么
procedure TForm1.Button1Click(Sender:TObject);//这儿有个分号
begin
Label.Caption := 'Hello,world!';//delphi中的字符串的引用用单引号?
end;
而构造函数
Constructor Create ( a:Integer; b:String; c:1..10//这儿却没有分号
begin //参数声明时有分号?
a := a;
b := b;
c := c;
end;
能给我归纳一下delphi中参数的用法吗,谢谢。
procedure TForm1.Button1Click(Sender:TObject);//这儿有个分号
begin
Label.Caption := 'Hello,world!';//delphi中的字符串的引用用单引号?
end;
而构造函数
Constructor Create ( a:Integer; b:String; c:1..10//这儿却没有分号
begin //参数声明时有分号?
a := a;
b := b;
c := c;
end;
能给我归纳一下delphi中参数的用法吗,谢谢。