标签: java guice
在下面的guice @Provides示例中,应该如何定义访问修饰符?应该是公开的还是可以私有的?有什么关系吗?
public class AModule { @Provides @Singleton public A providesA() { } }