のための<対XOR>は何か違いがあります:デルファイ:ブール
procedure InequalityMsg(ABool1, ABool2 : Boolean);
begin
if ABool1 <> ABool2 then
ShowMessage('Yeah, they''re not the same');
end;
と
procedure InequalityMsg(ABool1, ABool2 : Boolean);
begin
if ABool1 XOR ABool2 then
ShowMessage('Yeah, they''re not the same');
end;
Delphiの 'x < ...しかしすぐにそれはただの 'ABool1!= ABool2'、愚かな私を実現しました。 – BoltClock