Delphi 3 中接口支持的等效项是什么?
我支持用 Delphi 3 编写的应用程序,并且我想对源代码进行一些改进,同时等待将其升级到较新版本的 Delphi 的机会。我想使用的东西之一是接口。我知道 Delphi 3 已经有了接口的概念,但我很难找到如何做相当于
if Supports(ObjectInstance, IMyInterface) then
I support an application written in Delphi 3 and I would like to put in some improvements to the source code while waiting for the opportunity to upgrade it to a newer version of Delphi. One of the things I would like to use is Interfaces. I know Delphi 3 already has the concept of Interfaces but I am having trouble finding out how to do the equivalent of
if Supports(ObjectInstance, IMyInterface) then
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
编写您自己的“支持”功能的实现。在Delphi 2009中您可以使用
测试:
希望它能在Delphi 3中工作
Write your own implementation of "Supports" function. In Delphi 2009 you can use
Test:
Hope it will work in Delphi 3