I am wondering if the following is valid in Java:
class OuterClass {
OuterClass(param1, param2) {
...some initialization code...
}
void do {
// Here is where the doubt lays
OuterClass.InnerClass ic = this.new InnerClass();
}
class InnerClass {
}
}
Basically what I am trying to achieve here is to instantiate an inner class object from the current instance of the outer class, not a new instance, the current one. I believe this comes handy is when the constructor of the outer class is not empty (takes parameters) and we don't know what pass to them (they can't be null since some might be assigned to a class variable that is accessed by the inner class object).
Let me know if I explained myself well.
Thanks in advance!
InnerClassfor every instance ofOuterClass? why can't you do it in the c'tor, or by using agetInnerClass()method? – amit Oct 22 '11 at 1:25static, is 'connected' to an outer class, and cannot be instantiated without it. – amit Oct 22 '11 at 1:31