Consider the following Java class. What does this.display()
do in the method show()
?
public class Display {
void display() {
System.out.println("Inside display method");
}
void show() {
this.display();
}
}