我在程序中得到了一组A,B,C,D这样的数字,有时我需要计算几个数字的总和,如:
function DoIt2 (a,b : Integer) : Integer ; overload begin result := a +b ; end; function DoIt3 (a,b,c : Integer) : Integer ; overload begin result := a +b +c ; end;
我的问题涉及很多DoIt的功能.我无法使用,例如一个IntegerList,我需要知道什么是A和B等等…..
与无限功能重载相比,有什么好的解决方案?
解决方法
你应该使用
open array:
function Sum(const Values: array of Integer): Integer; var i: Integer; begin Result := 0; for i := low(Values) to high(Values) do Result := Result + Values[i]; end; end;
x := Sum([1,2]); y := Sum([1,2,3]); z := Sum([42,666,29,1,3]); i := Sum([x,y,z]);
等等.