Android和Java的依賴注入器:Dagger
Dagger是一個快速的Android和Java依賴注入器。
Use @Inject
to annotate the constructor that Dagger should use to create instances of a class. When a new instance is requested, Dagger will obtain the required parameters values and invoke this constructor.
class Thermosiphon implements Pump { private final Heater heater; @Inject Thermosiphon(Heater heater) { this.heater = heater; } ... }
Dagger can inject fields directly. In this example it obtains a Heater
instance for the heater
field and a Pump
instance for the pump
field.
class CoffeeMaker { @Inject Heater heater; @Inject Pump pump; ... }
If your class has @Inject
-annotated fields but no @Inject
-annotated constructor, Dagger will use a no-argument constructor if it exists. Classes that lack @Inject
annotations cannot be constructed by Dagger.
Dagger does not support method injection.
本文由用戶 jopen 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!