当前位置:  开发笔记 > 编程语言 > 正文

Delphi 2009泛型编译问题

如何解决《Delphi2009泛型编译问题》经验,为你挑选了1个好方法。

我正在查看Delphi 2009试用版,但是立即遇到了仿制药问题.

下面的代码没有编译,我没有丝毫想到为什么它给了我E2015的Equals()方法:

type
  TPrimaryKey = class(TObject)
  strict private
    fValue: T;
  public
    constructor Create(AValue: T);
    function Equals(Obj: TObject): boolean; override;
    function GetValue: T;
  end;

constructor TPrimaryKey.Create(AValue: T);
begin
  inherited Create;
  fValue := AValue;
end;

function TPrimaryKey.Equals(Obj: TObject): boolean;
begin
  Result := (Obj <> nil) and (Obj is TPrimaryKey)
    and (TPrimaryKey(Obj).GetValue = fValue);
end;

function TPrimaryKey.GetValue: T;
begin
  Result := fValue;
end;

为什么编译器认为无法比较fValue和GetValue()的结果?



1> Barry Kelly..:

如果T是一个字符串怎么办?如果它是TSize记录怎么办?

在不约束T的情况下(例如,使用),您无法确定比较是否有意义.

相反,如果要比较T类型的两个值,可以使用Generics.Defaults单元并使用:

TEqualityComparer.Default.Equals(x, y)

比较类型T的值x和y

推荐阅读
有风吹过best
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有