N
netbug
Unregistered / Unconfirmed
GUEST, unregistred user!
请看:
procedure TForm1.Button1Click(Sender: TObject);
var a:boolean;
begin
a:=true;
If a=true then
showMessage('hello');
end;
我记得过去在编程时,遇到逻辑变量不能进行判断,
象If a=true then
showMessage('hello');
end;
应该写成:
If a then
showMessage('hello');
end;
请问:在Delphi中,允许对逻辑变量进行判断吗?谢谢。
procedure TForm1.Button1Click(Sender: TObject);
var a:boolean;
begin
a:=true;
If a=true then
showMessage('hello');
end;
我记得过去在编程时,遇到逻辑变量不能进行判断,
象If a=true then
showMessage('hello');
end;
应该写成:
If a then
showMessage('hello');
end;
请问:在Delphi中,允许对逻辑变量进行判断吗?谢谢。