各位大佬帮帮我呗
编写一个Java应用程序,该程序包括3个类:类A、类B和主类E。其中类B是类A的子类,在子类B中新增了成员变量和成员方法,并且隐藏了父类A的成员变量和重写了父类A的成员方法。在主类E的main方法中,创建B的对象并赋给父类A的对象a,使用上转型对象a两期测试上转型对象的一些特性 写个简单一点的 比较容易看懂的 摆脱了 拜托了 隐藏了父类A的成员变量,这句话没看懂,怎么隐藏 package test;public class E {
public static void main(String[] args) {
A a=new B(0);
System.out.println(a.n);
a.method();
}
}
class A{
int n;
public A(int n) {
this.n = n;
}
public void method(){
System.out.println("这是父类的方法");
}
}
class B extends A{
public B(int n) {
super(n);
// TODO Auto-generated constructor stub
}
public void method(){
System.out.println("这是子类的方法");
}
}
不知道是不是你说的意思
页:
[1]