Sorry for the basic question. But it was like 3 years ago since I encountered this case.
I have this code
class ParentClass {
...
class InnerClass {
...
// 'this' call here
...
}
}
I would appreciate it if you could answer these questions for me:
- How can I get the instance of ParentClass using
this
notation? - How can I get the instance of InnerClass using
this
notation?
Cheers!