M
maple_guo
Unregistered / Unconfirmed
GUEST, unregistred user!
谁能给解释一下下面的几行代码是什么意思?
还有我怎么不能在里面设断点?
还有我怎么不能在里面设断点?
代码:
procedure TForm1.Button2Click(Sender: TObject);
begin
if (1 and 2) = 0 then //true
showmessage('yes0');
if (39 and 63) = 39 then //true
showmessage('yes39');
if (1 and 2) = 1 then //false
showmessage('yes1');
end;