私は単純なクラスを持っています:
Public class Store {
Product product = new Product();
public class Product{
Store getStore(){
//What does this return statement mean?
return Store.this;
}
}
}
Store.this;
return ステートメントの が、Store
をホストするインスタンスを意味するかどうか疑問に思っていますproduct
。