Calling outer class function from inner class
- by santose
hi,
I have implemented a nested class in java. And I need to call the outer class method from inner class.
//Code
class outter{
void show(){
SOP("outter show");
}
class inner{
void show(){
SOP("inner show");
}
}
}
How can I call the outter method "show".