我有一个子类和一个超类。在子类中,当我想用super.i和super.one检索超类的值时,它显示为零。为什么?当我将超类方法扩展到子类时,绝对有必要使用super关键字调用超类成员函数吗?
public class Inherit{
public static void main(String args[])
{
System.out.println("Hello Inheritance!");
Date now = new Date();
System.out.println(now);
Box hello = new Box(2,3,4);
BoxWeight hello_weight = new BoxWeight(2,5,4,5);
hello.volume();
hello_weight.volume();
Box hello_old = hello;
hello = hello_weight;
//hello.showValues();
hello.show();
hello_old.show();
hello = hello_old;
hello.show();
hello.setValues(7,8);
hello_weight.setValues(70, 80);
hello.showValues();
hello_weight.showValues();
}
}
class Box{
int width, height, depth, i, one;
static int as=0;
Box(int w, int h, int d)
{
++as;
width = w;
height = h;
depth = d;
}
void setValues(int a, int k)
{
i = k;
one = a;
System.out.println("The values inside super are : " + i +" " + one +" " + as);
}
void showValues()
{
System.out.println("The values of BoxWeight : " + i +" " + one);
//System.out.println("The superclass values : "+ super.i + " " + super.one);
}
void volume()
{
System.out.println("Volume : " + width*height*depth);
}
void show()
{
System.out.println("The height : " + height);
}
}
class BoxWeight extends Box{
int weight,i,one;
void volume()
{
System.out.println("Volume and weight : " + width*height*depth +" "+ weight);
}
void setValues(int a, int k)
{
i = k;
one = a;
}
void showValues()
{
System.out.println("The values of BoxWeight : " + i +" " + one);
System.out.println("The superclass values : "+ super.i + " " + super.one);
}
BoxWeight(int w, int h, int d, int we)
{
super(w,h,d);
weight = we;
}
}
答案 0 :(得分:1)
因为你没有初始化一个,所以默认情况下它的值为零。
hello_weight
是Box_Weight类的对象,当你调用该类的setValues时,此类的一个被初始化,而超类一个被遮蔽。所以超级一个仍为零。
一个未在构造函数中初始化。
答案 1 :(得分:0)
您不需要super
关键字来访问父类的成员。但是,您需要的是具有适当的范围/可见性。
如果您的父类的字段为protected
而不是private
,那么只有子类的成员才能看到它们。
答案 2 :(得分:0)
变量的默认范围是package private.
因此,如果要访问父类变量而不是make protected
,或者将子项和父项放在相同的包中。
在您的情况下,int width, height, depth, i, one;
变量是包私有的,所以如果您的Sub类不在同一个包中而不能访问。因此将这些声明为protected
。