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

What is the output when local variable shadows a parameter in the following code?

public class Example {
    void print(int number) {
        int number = 50;
        System.out.println(number);
    }
}