gpt4 book ai didi

delphi - 在类声明中使用自己的类作为类型参数约束

转载 作者:行者123 更新时间:2023-12-03 14:43:46 24 4
gpt4 key购买 nike

我在 Delphi XE8 中有以下类声明:

TestClass = class;
TestClass = class
function test<T: TestClass>(supplier: TFunc<T>): T; // Compiler error
end;

这会引发以下编译器错误:

E2086 Type 'TestClass' is not yet completely defined

当我将另一个类添加到混合中并使用该类作为约束时,它工作得很好:

AnotherTestClass = class
end;

TestClass = class;
TestClass = class
function test<T: AnotherTestClass>(supplier: TFunc<T>): T; // No Error
end;

我怀疑问题是前向类型声明还没有告诉 Delphi 关于 TestClass 类型的足够信息。这可能更明显,因为以下解决该问题的尝试在不同的行上抛出了完全相同的编译器错误:

TestClass = class;
AnotherTestClass = class (TestClass) // Compiler Error
end;
TestClass = class
function test<T: AnotherTestClass>(supplier: TFunc<T>): T;
end;

我做错了什么吗?如果没有,有办法解决这个问题吗?

最佳答案

你没有做错任何事。您所尝试的应该是可能的,但在我看来,编译器有缺陷。在不完全改变设计的情况下,没有可行的方法来解决这个问题。解决该问题的一种方法是在运行时强制执行约束。然而,在我看来,这完全改变了设计。

请注意,在 .net 中,您尝试做的事情是完全可能的:

class MyClass
{
private static T test<T>(Func<T> arg) where T : MyClass
{
return null;
}
}

Delphi 泛型功能基于 .net 泛型,我相当怀疑您面临的问题是由 Delphi 开发人员的疏忽造成的。

您应该提交错误报告/功能请求。

更新1

LU RD 建议更好的解决方法。使用类助手:

type
TestClass = class
end;

TestClassHelper = class helper for TestClass
function test<T: TestClass>(supplier: TFunc<T>): T;
end;

这将允许您在编译时测试约束。但是,它确实迫使您在函数外部定义不整洁的方法,并且它会阻止您将类助手用于任何其他目的。因此,在我看来,您仍然应该提交错误报告/功能请求。

更新2

错误报告:RSP-13348

关于delphi - 在类声明中使用自己的类作为类型参数约束,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34610900/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com