当前位置 : 主页 > 编程语言 > delphi >

delphi – 为什么一个类需要一个空方法来调用它?

来源:互联网 收集:自由互联 发布时间:2021-06-23
我正在为Delphi评估现有的依赖注入库,并且由于它的简单性而在 delphidicontainer上定居 – 它只需要一个 unit file! 但是,有一件事我不明白 – 在this example file底部: initialization//with those l
我正在为Delphi评估现有的依赖注入库,并且由于它的简单性而在 delphidicontainer上定居 – 它只需要一个 unit file!

但是,有一件事我不明白 – 在this example file底部:

initialization
//with those lines the linked will include the actual code for the services
TCSVDataService.Register;
TPaddedDataService.Register;

这些Register方法是空的,但是,如果我在初始化部分注释掉这两行,DIContainer.Get(‘dataservice’)将作为TDataService失败.

为什么?这些空方法是什么?

Delphi编译器是智能的,并且在编译/链接代码时会尝试消除未使用的代码,因此从编译器的角度来看,示例中的实现类(例如,TCSVDataService)不会在程序中的任何地方使用,并且将被删除,所以这些空方法调用是为了防止这种情况发生.
网友评论