在Delphi XE2中使用泛型和前向声明时的编译器错误
我开始了Delphi 2010项目,然后迁移到XE,现在我尝试迁移到XE2。 在XE2(更新4修补程序1)中编译后,单元测试开始失败,并显示AV。 经过一些调试后,很明显,下面的代码没有正确编译:
program ForwardDeclaration;
{$APPTYPE CONSOLE}
uses
System.SysUtils;
type
TEntityBase = class(TObject)
protected
FModel: Integer;
public
constructor Create(const AModel: Integer);
end;
TEntity<TKey> = class(TEntityBase)
end;
TMyEntity2 = class;
TMyEntity1 = class(TEntity<Integer>)
FData: Integer;
end;
TMyEntity2 = class(TMyEntity1)
end;
constructor TEntityBase.Create(const AModel: Integer);
begin
inherited Create;
FModel := AModel;
end;
var
MyEntity: TMyEntity1;
begin
try
Writeln(TEntityBase.ClassName, ': ', TEntityBase.InstanceSize, ' bytes');
Writeln(TMyEntity1.ClassName, ': ', TMyEntity1.InstanceSize, ' bytes');
MyEntity := TMyEntity1.Create(100);
Assert(MyEntity.FData = 0);
except
on E: Exception do Writeln(E.ClassName, ': ', E.Message);
end;
end.
计划产出:
TEntityBase: 12 bytes
TMyEntity1: 12 bytes <-- Must be 16 bytes!
EAssertionFailed: Assertion failure (ForwardDeclaration.dpr, line 41)
是否可以通过调整编译器选项来解决问题?
这个问题是否重复在别人身上?
PS QC107110
是否可以通过调整编译器选项来解决问题?
不 ,你无法通过调整修复错误,这是编译器中的一个(非常具体的)错误。
[有人可以告诉我]这个问题是否重复在别人身上?
我可以重现代码,但仅限于XE2更新4。
我无法在XE3中检查它(没有该版本)。 它在XE4中是固定的(根据评论)。
所以让代码工作的唯一方法是:
一个。 删除不需要的前向声明。
湾 使用不同版本的Delphi。
上一篇: Compiler bug when using generics and forward declaration in Delphi XE2