いくつかの例を見ていますがthis.repository=repository
、コンストラクターでオブジェクトを作成することと使用 することの違いを深く理解したいと思いますRepository repository = new Repository()
public class ServiceImpl implements Service{
private final Repository repository
public ServiceImpl (Repository repository)
this.repository=repository
}