Thema
:
Unterschied zwischen "not" und "false"?
Einzelnen Beitrag anzeigen
himitsu
Registriert seit: 11. Okt 2003
Ort: Elbflorenz
44.184 Beiträge
Delphi 12 Athens
#
7
AW: Unterschied zwischen "not" und "false"?
11. Aug 2010, 16:20
zusammenfalten
·
markieren
Delphi-Quellcode:
var
b: Boolean;
begin
Memo1.Lines.Add('
');
Memo1.Lines.Add('
b := false;
');
b := false;
if
b
then
Memo1.Lines.Add('
if b then
');
if
not
b
then
Memo1.Lines.Add('
if not b then
');
if
b = false
then
Memo1.Lines.Add('
if b = false then
');
if
b = true
then
Memo1.Lines.Add('
if b = true then
');
Memo1.Lines.Add('
');
Memo1.Lines.Add('
b := true;
');
b := true;
if
b
then
Memo1.Lines.Add('
if b then
');
if
not
b
then
Memo1.Lines.Add('
if not b then
');
if
b = false
then
Memo1.Lines.Add('
if b = false then
');
if
b = true
then
Memo1.Lines.Add('
if b = true then
');
Memo1.Lines.Add('
');
Memo1.Lines.Add('
b := 3;
');
b := Boolean(3);
if
b
then
Memo1.Lines.Add('
if b then
');
if
not
b
then
Memo1.Lines.Add('
if not b then
');
if
b = false
then
Memo1.Lines.Add('
if b = false then
');
if
b = true
then
Memo1.Lines.Add('
if b = true then
');
end
;
$2B or not $2B
Zitat
himitsu
Öffentliches Profil ansehen
Besuche die Homepage von himitsu!
Mehr Beiträge von himitsu finden