| Author |
Referencing an outer class from an inner class instance
|
Michael Labuschagne
Ranch Hand
Joined: May 08, 2007
Posts: 56
|
|
Having trouble understanding why it is exactly that I can't have a reference (this) to my outer class. Obviously because (this) now refers to the inner class, but is there a way around it? Would I have to do something like this: Surely there's a more logical way of referring to an outer class from an inner class instance??
|
 |
Peter Chase
Ranch Hand
Joined: Oct 30, 2001
Posts: 1970
|
|
Yes, it's OuterClass.this . Casting the inner class "this" to the outer class will fail; they are not the same class.
|
Betty Rubble? Well, I would go with Betty... but I'd be thinking of Wilma.<br /> <br />#:^P
|
 |
 |
|
|
subject: Referencing an outer class from an inner class instance
|
|
|