方法重载和默认参数,Delphi中的任何其他选项?

前端之家收集整理的这篇文章主要介绍了方法重载和默认参数,Delphi中的任何其他选项?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在程序中得到了一组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;

并使用open array constructor调用它:

x := Sum([1,2]);
y := Sum([1,2,3]);
z := Sum([42,666,29,1,3]);
i := Sum([x,y,z]);

等等.

事实上,你会发现这个函数(整数版本的名称SumInt),以及许多已经在Math单元中实现的类似函数.

原文链接:/delphi/730252.html

猜你在找的Delphi相关文章