我在程序中得到了一组A,B,C,D这样的数字,有时我需要计算几个数字的总和,如: function DoIt2 (a, b : Integer) : Integer ; overload begin result := a +b ; end; function DoIt3 (a, b, c : Integer) : Integer ; overload
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等等…..
与无限功能重载相比,有什么好的解决方案?
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;
并使用open array constructor调用它:
x := Sum([1, 2]); y := Sum([1, 2, 3]); z := Sum([42, 666, 29, 1, 2, 3]); i := Sum([x, y, z]);
等等.
事实上,你会发现这个函数(整数版本的名称为SumInt
),以及许多已经在Math单元中实现的类似函数.