具有字符串类型的 Delphi 通用接口

发布于 2024-10-10 02:58:25 字数 817 浏览 2 评论 0原文

我尝试在 Delphi 2010(也在 XE 中)定义一个通用接口,并且(即使它编译)错误洞察抱怨语法。不幸的是,这也会破坏实现类的代码完成。所以我想知道这是IDE的错误还是我的想法的错误;)

接口:

IValue <T> = interface
  function GetValue : T;
  procedure SetValue (Value : T);
end;

和实现类:

TSomeClass = class (TInterfacedObject, IValue <string>, IValue <Integer>)
protected
  function GetValue1 : string;
  procedure SetValue1 (Value : string);
  function GetValue2 : Integer;
  procedure SetValue2 (Value : Integer);
  function IValue <string>.GetValue = GetValue1; //from this point error insight complains
  procedure IValue <string>.SetValue = SetValue1; 
  (*....*)
end;

如果我通过Tstring替换string并定义< code>TString = string 一切看起来都很好。有什么想法还是德尔福错误?

问候,

可可

I tried to define a generic interface in Delphi 2010 (also in XE) and (even though it compiles) the error insight complains about the syntax. Unfortunatly this will also break the code completion for the implementing class. So I wonder if it is an error of the IDE or an error of my thoughts ;)

The interface:

IValue <T> = interface
  function GetValue : T;
  procedure SetValue (Value : T);
end;

And a implementing class :

TSomeClass = class (TInterfacedObject, IValue <string>, IValue <Integer>)
protected
  function GetValue1 : string;
  procedure SetValue1 (Value : string);
  function GetValue2 : Integer;
  procedure SetValue2 (Value : Integer);
  function IValue <string>.GetValue = GetValue1; //from this point error insight complains
  procedure IValue <string>.SetValue = SetValue1; 
  (*....*)
end;

If I substitute string through Tstring and define TString = string everything looks fine. Any ideas or is it a Delphi bug?

Regards,

Coco

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

别想她 2024-10-17 02:58:25

据我观察,IDE 使用与编译器不同的解析器。它因将编译器毫无疑问地接受的错误标记为错误而臭名昭著。我发现当使用泛型时尤其如此。虽然每个版本都对其进行了改进,但有时仍然会出现错误。一些建议:

  1. 确保您拥有最新的
    更新。
  2. 打开质量控制报告(或投票支持现有报告)。与 2010 年相比,这个问题更有可能在 XE 中得到解决。
  3. 您可以尝试 Andreas Hausladen 的非官方 IDE 修复包。它通常包含许多 Code Insight 修复。

您还可以尝试CnPack IDE 向导。它包括一个称为“代码输入助手”的功能。它是 IDE 内置代码完成的替代方案,在许多情况下,即使 Error Insight 检测到错误,它仍然可以工作。

From what I've observed, the IDE uses a different parser than the compiler. It has been notorious for flagging things as errors that the compiler accepts without question. I've found this especially true when generics are used. While, it has been improved with each version it still sometimes gets it wrong. A few suggestions:

  1. Make sure you have the latest
    updates.
  2. Open QC report (or vote for an existing one). This is more likely get addressed in XE than 2010.
  3. You can try Andreas Hausladen's unofficial IDE Fix Pack. It usually includes a number of Code Insight fixes.

You can also try CnPack IDE Wizards. It includes a feature called "Code Input Helper". It is an alternative for the IDE's builtin code completion, which in many cases still works even if Error Insight detects errors.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文