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

Given the following code, which class members are accessible from a subclass located in a different package?

public class Vehicle {
    private int modelYear;
    protected double speed;
    public int weight;
}