我在理解为什么以下代码不起作用时遇到了问题。
我有以下项目结构:
@Component(modules = CCModule.class)
public interface CComponent {
XXX getXXX();
}
在哪里
@Module
public class CCModule {
@Provides @Singleton
public XXX provide XXX(){
return new XXX();
}
}
和
@Component(dependencies = CComponent.class, modules = AAModule.class)
public interface AComponent {
YYY getYYY();
}
在哪里
class YYY {
@Inject
public YYY(XXX xxx) {
...
}
}
我将所有内容初始化为:
CComponent c_component = Dagger_CComponent.builder().cCModule(new CCModule()).build();
AComponent a_component = Dagger_AComponent.builder()
.cComponent(c_component)
.aAModule(new AAModule())
.build();
一旦编译发生,我会收到以下错误:
错误:(11, 1) 错误: com.test.CComponent (unscoped) may not reference scoped bindings: @Provides @Singleton com.test.XXX com.test.CCModule.provideXXX()
我的目标是让一个组件从其他组件继承绑定以对对象(单例)具有相同的引用。