gpt4 book ai didi

android - Dagger 2 静态注入(inject)

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:02:16 24 4
gpt4 key购买 nike

Dagger 2 静态注入(inject)的任何示例。我已经试过了:-

class A{
@Inject
static B b;

static {
getAppInstance().getComponent().inject(A.class);
}

static anyMethod(){
b.anotherMethod();
}
}

public interface AppComponent{
void inject(Class<A> aClass);
}

最佳答案

所以这是我建议的答案:-

class A{
private static B b = getAppInstance.getComponent().getB();

static anyMethod(){
b.anotherMethod();
}
}

public interface AppComponent{
B getB();
}

关于android - Dagger 2 静态注入(inject),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34903739/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com