Registriert seit: 26. Mai 2004
3.159 Beiträge
|
AW: if Anweisung?
27. Mär 2012, 13:11
Geht doch auch einfacher:
Delphi-Quellcode:
if (gain < 0.85) or (gain > 1.15) then
// ...
PS: gain ist aber hoffentlich keine globale Variable?
PPS: Etwas besser lesbar
Delphi-Quellcode:
if IsValidGain(gain) then
// ...
function TForm7.IsValidGain(const AGain: Float): Boolean; // private method
const
MIN_VALUE = 0.85;
MAX_VALUE = 1.15;
begin
Result := (AGain > MIN_VALUE) and (AGain < MAX_VALUE);
end;
»Remember, the future maintainer is the person you should be writing code for, not the compiler.« (Nick Hodges)
Geändert von s.h.a.r.k (27. Mär 2012 um 13:14 Uhr)
|