الرجوع
تسجيل الدخول

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