动态数组,动态数组
【 tulaoshi.com - Delphi 】
方法:
      var
         A:array of Integer;
      begin
           ShowMessage(IntToStr(High(A))); //<- 值为1
           SetLenght(A,3);
           ShowMessage(IntToStr(High(A))); //<- 值为3
      end;
  注:这是DELPHI4.0新添的功能.
来源:http://www.tulaoshi.com/n/20160129/1492551.html