Registriert seit: 12. Dez 2002
Ort: Karlsruhe
1.989 Beiträge
|
Bedingte Bedingung
24. Feb 2003, 15:58
Delphi-Quellcode:
var a,b,c,res: boolean;
begin
if a then
res := b and c
else
res := b;
if res then
...
end;
geht das auch in eine Zeile, nach dem Motto
Delphi-Quellcode:
var a,b,c,res: boolean;
begin
if (res := if a then (b and c) else b) then
...
end;
|