被private修饰的,是不可以被继承的,因为private修饰的表示只在本类可见,子类是不可见的。被public和protected修饰的可以被子类继承,被默认修饰符修饰的只能在同包下继承。 不能继承父类的构造方法 被static修饰的不能继承 子类是不继承父类的static变量和方法的。因为这是属于类本身的。但是子类是可以访问的。 子类...
结论:这一结果验证了private成员的作用域为定义该private成员的类的作用域,同一个类所创建的不同对象之间可以相互访问彼此的private成员变量。import java.io.*; class Date{ private int year; private int month; private int day; Date(int year,int month,int day){ this.year=year; this.month=month; th...