我正在看一些示例,我想深入了解this.repository=repository
在构造函数中创建对象或使用 创建对象的区别Repository repository = new Repository()
public class ServiceImpl implements Service{
private final Repository repository
public ServiceImpl (Repository repository)
this.repository=repository
}