java – 有人可以为Dagger 2提供一个很好的解释吗?

我真的很难理解匕首2依赖注入系统.

我明白使用@Inject注释告诉匕首我们需要提供一些类型的实例到这里.

但是,我不明白其他组件的各种角色,例如:@Module,@Component,@Provides以及它们如何协同工作,为适当的依赖关系提供适当的实例.

有人可以简单扼要地解释一下吗?

解决方法

@Module: Modules are classes whose methods provide dependencies,so we
define a class and annotate it with @Module,thus,Dagger will kNow
where to find the dependencies in order to satisfy them when
constructing class instances. One important feature of modules is that
they have been designed to be partitioned and composed together (for
instance we will see that in our apps we can have multiple composed
modules).

@Component: Components basically are injectors,let’s say a bridge between
@Inject and @Module,which its main responsibility is to put
both together. They just give you instances of all the types you
defined,for example,we must annotate an interface with @Component
and list all the @Modules that will compose that component,and if any
of them is missing,we get errors at compile time. All the components
are aware of the scope of dependencies it provides through its
modules.

@Provide: Inside modules we define methods containing this annotation
which tells Dagger how we want to construct and provide those
mentioned dependencies.

我建议你阅读:

> Tasting Dagger 2 on Android by Fernando Cejas
> Dependency Injection with Dagger 2 (Devoxx 2014) by Jake Wharton
> Dependency Injection with Dagger 2
> Dependency injection with Dagger 2 – the API by froger_mcs
> Dependency injection with Dagger 2 – Custom scopes by froger_mcs

我想这将有助于理解.

相关文章

最近看了一下学习资料,感觉进制转换其实还是挺有意思的,尤...
/*HashSet 基本操作 * --set:元素是无序的,存入和取出顺序不...
/*list 基本操作 * * List a=new List(); * 增 * a.add(inde...
/* * 内部类 * */ 1 class OutClass{ 2 //定义外部类的成员变...
集合的操作Iterator、Collection、Set和HashSet关系Iterator...
接口中常量的修饰关键字:public,static,final(常量)函数...