Hi,
Man muss boolsche Ausdrücke nicht noch gegen true testen:
if (boolscherAusdruck == true)
ist dasselbe wie
if (boolscherAusdruck)
Entsprechend:
if (boolscherAusdruck == false)
ist
if (! boolscherAusdruck)
Gunnar
Hi,
Man muss boolsche Ausdrücke nicht noch gegen true testen:
if (boolscherAusdruck == true)
ist dasselbe wie
if (boolscherAusdruck)
Entsprechend:
if (boolscherAusdruck == false)
ist
if (! boolscherAusdruck)
Gunnar