作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试执行以下操作:
type
IExemplo<Generic> = interface
function GetGenerico: Generic;
end;
TClassA<Generic> = class(TComponent, IExemplo<Generic>)
function GetGenerico: Generic; virtual;
function GetInterface: IExemplo<Generic>; virtual;
end;
TClassB = class(TClassA<string>)
function GetGenerico: string; override;
function GetInterface: IExemplo<string>; override;
end;
function GetInterface: IExemplo<string>; override;
TClassB
不再具有 Generic 属性,此时其类型已正确设置。
最佳答案
这段代码是有效的并且可以在更高版本的 Delphi 中编译。确实,它用 Delphi 2010 为我编译,所以我想知道你是否可能没有安装 all the updates that are available for Delphi 2010 .
Delphi 泛型在早期版本中充满了缺陷。在一定程度上,最务实的做法是让您升级到现代版本的 Delphi,以逃避这些缺陷的暴政。是的,你可以通过安装 Delphi 2010 的更新来解决这个问题,但我相信你很快就会遇到泛型的其他问题。
关于Delphi 2010 和泛型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45003142/
我是一名优秀的程序员,十分优秀!