如何從內部類中的方法獲取父對象?嵌套類的對象如何訪問它們嵌套的對象?
class OuterClass {
public outerMethod() {
// this refers to the object in the outer class
}
class InnerClass {
public innerMethod() {
// this refers to the object in the inner class
// How do I get my current parent object
}
}
}
一種方法是添加像
public OuterClass getthis() {
return this;
}
任何其他建議的方法?有沒有從java本身的方式?
更新了類名。對困惑感到抱歉。 – EFreak 2011-02-15 10:28:15