使用open array parameters
将数组(动态或静态)传递给方法/过程/函数,
声明可能如下所示:
procedure WorkWithArray( const anArray : array of Integer);
(* or procedure WorkWithArray( var anArray : array of Integer); *)
var
i : Integer;
begin
for i := Low(anArray) to High(anArray) do
begin
// Do something with the "open array" anArray
WriteLn(anArray[i]);
end;
end;
...
var
staticArray : array[0..2] of Integer;
dynArray : array of integer;
dynArrayG : TArray<Integer>;
begin
SetLength(dynArray,10);
SetLength(dynArrayG,10);
WorkWithArray(staticArray); // Using a static array
WorkWithArray(dynArray); // Using a dynamic array
WorkWithArray(dynArrayG); // Using a dynamic generic array
...
end;
传递这样的数组是整个Delphi RTL中常用的一个习惯用语,包括一些用于处理数据数组的非常优化的函数/过程。
假设我们需要使用数组的子范围调用WorkWithArray
。然后我们可以使用内在的Slice()
函数。
首先没有偏移量,从第一个索引开始:
Type
// Helper declarations
TIntLongArray = array[0..MaxInt div SizeOf(Integer) - 1] of integer;
PIntLongArray = ^TIntLongArray;
WorkWithArray(Slice(staticArray,2)); // No type cast needed for static arrays
WorkWithArray(Slice(PIntLongArray(@dynArray)^,2));
WorkWithArray(Slice(PIntLongArray(@dynArrayG)^,2));
注意:动态数组不直接适合Slice()
函数,
见"Slice does not work with dynamic arrays"
。
因此必须使用带有类型转换的变通方法。
如果我们想使用不是从第一个元素开始的子范围怎么办?
也可以:
WorkWithArray(Slice(PIntLongArray(@staticArray[1])^,2));
WorkWithArray(Slice(PIntLongArray(@dynArray[1])^,2));
WorkWithArray(Slice(PIntLongArray(@dynArrayG[1])^,2));
注意:偏移量和切片之和不得超过数组的元素数。
我知道使用复制(myArray,x1,x2)可以在输入声明为const的情况下使用 但这会产生数组的副本,并且对于大型数组来说是无效的。 (还有堆栈溢出的风险)。
最后,我的问题:
虽然这演示了一种通过引用使用起始索引和长度说明符传递数组子范围的方法, 它看起来有点尴尬。 是否有更好的替代方案,如果有,如何?
答案 0 :(得分:8)
已更新请参阅有关通用解决方案的信息。
这是一个替代方法,它封装了函数内偏移所需的类型转换,它驻留在声明为类函数的高级记录中。 除了隐藏类型转换外,还会根据数组的高索引检查偏移量。
如果需要,可以添加更多类型。
Type
SubRange = record
Type
TIntLongArray = array[0..MaxInt div SizeOf(Integer) - 1] of integer;
PIntLongArray = ^TIntLongArray;
TByteLongArray = array[0..MaxInt div SizeOf(Byte) - 1] of Byte;
PByteLongArray = ^TByteLongArray;
class function Offset( const anArray : array of Integer;
offset : Integer) : PIntLongArray; overload; static;
class function Offset( const anArray : array of Byte;
offset : Integer) : PByteLongArray; overload; static;
// ToDo: Add more types ...
end;
class function SubRange.Offset(const anArray : array of Integer;
offset : Integer): PIntLongArray;
begin
Assert(offset <= High(anArray));
Result := PIntLongArray(@anArray[offset]);
end;
class function SubRange.Offset(const anArray : array of Byte;
offset : Integer): PByteLongArray;
begin
Assert(offset <= High(anArray));
Result := PByteLongArray(@anArray[offset]);
end;
注意:偏移量和切片之和不得超过数组的元素数。
示例电话:
WorkWithArray( Slice(SubRange.Offset(staticArray,1)^,2));
WorkWithArray( Slice(SubRange.Offset(dynArray,1)^,2));
WorkWithArray( Slice(SubRange.Offset(dynArrayG,1)^,2));
虽然这看起来更好,但我仍然不相信这是最佳解决方案。
<强>更新强>
在编写上述解决方案时,我将泛型解决方案作为最终目标。
这是一个使用匿名方法和泛型来实现Slice(anArray,startIndex,Count)
的答案
可以与静态和动态数组一起使用的方法。
一个直接的泛型解决方案将依赖于范围检查在每个使用位置关闭,
这不是一个很好的解决方案。
原因是SizeOf(T)
不能用于声明最大大小的静态数组类型:
TGenericArray = T的数组[0..MaxInt div SizeOf(T) - 1]; // SizeOf(T)未解析
所以我们必须使用:
TGenericArray = T的数组[0..0];
代替。并且当它打开时触发范围检查,对于索引&gt; 0
<强>解决方案强>
但问题可以通过另一种策略解决,callbacks
或更现代的术语Inversion of Control
(IoC)或Dependeny Injection
(DI)。
这个概念最好用“不要打电话给我,我们叫你”来解释。
我们不是使用直接函数,而是将操作代码作为匿名方法与所有参数一起传递。
现在,范围检查问题包含在Slice<T>
框架内。
Slice<Integer>.Execute(
procedure(const arr: array of Integer)
begin
WriteLn(Math.SumInt(arr));
end, dArr, 2, 7);
unit uGenericSlice;
interface
type
Slice<T> = record
private
type
PGenericArr = ^TGenericArr;
TGenericArr = array [0..0] of T;
public
type
TConstArrProc = reference to procedure(const anArr: array of T);
class procedure Execute( aProc: TConstArrProc;
const anArray: array of T;
startIndex,Count: Integer); static;
end;
implementation
class procedure Slice<T>.Execute(aProc: TConstArrProc;
const anArray: array of T; startIndex, Count: Integer);
begin
if (startIndex <= 0) then
aProc(Slice(anArray, Count))
else
begin
// The expression PGenericArr(@anArray[startIndex]) can trigger range check error
{$IFOPT R+}
{$DEFINE RestoreRangeCheck}
{$R-}
{$ENDIF}
Assert((startIndex <= High(anArray)) and (Count <= High(anArray)-startIndex+1),
'Range check error');
aProc(Slice(PGenericArr(@anArray[startIndex])^, Count));
{$IFDEF RestoreRangeCheck}
{$UNDEF RestoreRangeCheck}
{$R+}
{$ENDIF}
end;
end;
end.
以下是一些示例用例:
program ProjectGenericSlice;
{$APPTYPE CONSOLE}
uses
Math,
uGenericSlice in 'uGenericSlice.pas';
function Sum(const anArr: array of Integer): Integer;
var
i: Integer;
begin
Result := 0;
for i in anArr do
Result := Result + i;
end;
procedure SumTest(const arr: array of integer);
begin
WriteLn(Sum(arr));
end;
procedure TestAll;
var
aProc: Slice<Integer>.TConstArrProc;
dArr: TArray<Integer>;
mySum: Integer;
const
sArr: array [1 .. 10] of Integer = (
1,2,3,4,5,6,7,8,9,10);
begin
dArr := TArray<Integer>.Create(1, 2, 3, 4, 5, 6, 7, 8, 9, 10);
aProc :=
procedure(const arr: array of Integer)
begin
WriteLn(Sum(arr));
end;
// Test predefined anonymous method
Slice<Integer>.Execute( aProc, dArr, 2, 7);
// Test inlined anonymous method
Slice<Integer>.Execute(
procedure(const arr: array of Integer)
begin
WriteLn(Sum(arr));
end, dArr, 2, 7);
// Test call to Math.SumInt
Slice<Integer>.Execute(
procedure(const arr: array of Integer)
begin
WriteLn(Math.SumInt(arr));
end, dArr, 2, 7);
// Test static array with Low(sArr) > 0
Slice<Integer>.Execute(
procedure(const arr: array of Integer)
begin
WriteLn(Sum(arr));
end, sArr, 3 - Low(sArr), 7);
// Using a real procedure
Slice<Integer>.Execute(
SumTest, // Cannot be nested inside TestAll
dArr, 2, 7);
// Test call where result is passed to local var
Slice<Integer>.Execute(
procedure(const arr: array of Integer)
begin
mySum := Math.SumInt(arr);
end, dArr, 2, 7);
WriteLn(mySum);
end;
begin
TestAll;
ReadLn;
end.
答案 1 :(得分:0)
如何避免打开数组和切片并使用类似的东西?
type
TArrayRef<T> = record
strict private
type PointerOfT = ^T;
FItems: PointerOfT;
FCount: Integer;
public
// FItems := @AItems[Offset]; FCount := Count;
constructor Create(AItems: array of T; Offset, Count: Integer);
property Items[Index: Integer]: T read GetItem; // Exit(FItems[Index])
property Count: Integer read FCount;
end;
TArrayRef = record // helpers
class function Create<T>(AItems: array of T; Offset, Count: Integer); static;
class function Create<T>(AItems: array of T; Count: Integer); static;
class function Create<T>(AItems: array of T); static;
end;
procedure WorkWithArray(const anArray : TArrayRef<Integer>);
var
I: Integer;
begin
for I := 0 to anArray.Count - 1 do WriteLn(anArray[I]);
end;
WorkWithArray(TArrayRef.Create(StaticArray, 3)); // first three items
WorkWithArray(TArrayRef.Create(DynArray, 10, 3));
答案 2 :(得分:0)
万一其他人像我一样被绊倒了。在较旧的Delphi版本(D2007及更早版本。不确定XE版本)中,如果使用重载,也会出现E2193错误:
procedure Polygon(Points: array of TPoint); overload;
procedure Polygon(Points: array of TDPoint); overload;
如果消除过载,则有效:
procedure Polygon(Points: array of TPoint);
procedure PolygonD(Points: array of TDPoint);
此问题已在Delphi 10.3.0(可能还有其他旧版本)中修复。