الرجوع
تسجيل الدخول
أنت تتصفح نسخة مؤرشفة من الموقع اضغط للانتقال إلى الموقع الجديد بكامل المزايا

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();
    }
}