public class Ex7 {
private int fld;
private void meth(int val) {
fld = val;
System.out.println(" meth() -> fld = " + fld);
}
public class Ex7Inner1 {
void operateOnFld() {
fld = 12;
}
void operateOnMeth() {
meth(10);
}
public void bar() {
System.out.println(" bar() ");
}
}
class Ex7Inner2 {
Ex7Inner1 i1 = new Ex7Inner1();
// how to call i1.bar() ??
i1.bar();
}
}
|
|
|||||||
|
|
Your problem is that you need to call
In the future, you may find that people are able to be more helpful if you include the error you get in your question, which I'll do now. When you try to compile the code your way, you get an error that looks like
This is because the only thing you can do outside of a method (like you originally had it) is declare variables. So it was expecting an "identifier" by which it meant "the name of the variable you are declaring". So if you had said
then |
|||||||
|
|
A few things wrong here;
So you can do something like this:
To access the Ex7's i1. Where your Ex7 instance contains an inner1 and an inner2 and your reference from within inner2 is inner2-->parentEx7 -->child inner1. If you make the inner class static you can do away with the Ex7 reference, as you're defining that the inner class doesn't need an instance of the outer class to exist. |
|||
|
|
|
but there are no method in Ex7Inner2 class. create method with 'i1.bar();' call inside and it compiles ok |
|||
|
|
|
Thus say
See the Java Tutorial from more information. |
|||
|
|