我的任务是创建一个库,它应该可以通过使用客户端轻松配置和扩展。
假设我必须创建一个库名称 testLibrary.. 它具有三个内部依赖项。
class testLibrary {
private interfaceA a; //
private interfaceB b;
private interfaceC c;
constructor(interfaceA a, interfaceB b, interfaceC c){
initializes the class with default implementation of these interfaces.
}
}
here class C also depends on interfaceA , interfaceB
class C {
private interfaceA a;
private interfaceB b;
private interfaceD d;
constructor(interfaceA a, interfaceB b, interfaceD c){
//comes with a default implementation of interface A , B and D
}
}
现在,如果我是类 testLibrary 的客户,并且我想在此 testLibrary 中使用 interfaceA 和 interfaceB 的自定义实现,这样即使该库的内部依赖项也指向自定义的依赖项(如果它们依赖于它)。
定义此 testLibrary 以便其依赖项可以轻松插入的最佳方法是什么?还假设作为客户,我不想使用任何 DI 框架。
如果这里的人们可以向我指出一些允许这种可扩展性或可插拔性的优秀开源库,我也会很高兴。