A
aszou
Unregistered / Unconfirmed
GUEST, unregistred user!
比如一命令调用FormAbout,下面的三个语句有什么区别呢?
1:
with TFromAbout.Creat(application) do
begin
ShowModal;
free;
end;
2:with TFromAbout.Creat(self) do
...
3:with TFromAbout.Creat(nil) do
...
上面三个语句执行起来没有不同,但不知有什么区别?
1:
with TFromAbout.Creat(application) do
begin
ShowModal;
free;
end;
2:with TFromAbout.Creat(self) do
...
3:with TFromAbout.Creat(nil) do
...
上面三个语句执行起来没有不同,但不知有什么区别?