Hallo,
Okay, also aus dem hier:
Delphi-Quellcode:
function Foo(Value:Integer):Integer;
begin
Result:=Value * 10; // Das ist das was mich nervt: zusätzliche Zeile
if Result > 100 then
Result:=Result - 1
else
Result:=Result + 1;
end;
Wird jetzt das hier:
Delphi-Quellcode:
function Foo(Value:Integer):Integer;
begin
if (TSetCheck.I<Integer>(Result, Value*10)) and (Result > 100) then
Result:=Result - 1
else
Result:=Result + 1;
end;
Findest du das wirklich schöner/übersichtlicher als das oben?
Den Code oben versteht man 1000x besser als DAS da. Und schneller wirds mit Sicherheit auch sein.
Michael
"Programmers talk about software development on weekends, vacations, and over meals not because they lack imagination,
but because their imagination reveals worlds that others cannot see."