我正在尝试编写一个接受匹配参数类型的通用函数。
Delphi 确实在普通参数的简单情况下正确推断类型参数。
例如:
type
TFoo = class
function Pair<T>(e1, e2: T): TList<T>;
end;
调用它aFoo.Pair(1, 2);
非常好,但是当我将参数签名更改为泛型类型时
type
TFoo = class
function InsertInto<T>(aList: TList<T>; aVal: T): TList<T>;
end;
并尝试调用它
aFoo.InsertInto(TList<String>.Create, 'bar');
然后编译器抱怨它:
E2010 Incompatible types: 'Generics.Collections.TList<uTest.TFoo.InsertInto.T>' and 'Generics.Collections.TList<System.String>'
有什么办法可以编写这个(或类似的)方法,以便客户端不必指定类型参数?
aFoo.InsertInto<String>(TList<String>.Create, 'bar');