java:关于继承变量的值问题
Posted AWTGHD
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java:关于继承变量的值问题相关的知识,希望对你有一定的参考价值。
1、在java中,如果子类继承父类的静态变量时,当你在子类面前修改这个静态变量的值,其父类的静态变量也会改变。
案例:
//父类
public class Animal {
//静态属性
public static int Age=1;
};
//子类
public class Cat extends Animal{
//静态方法
public static void print(){
System.out.println("Animal:"+Animal.Age+"; Cat:"+Cat.Age);
};
//普通方法
public void say(){
System.out.println("Animal:"+Animal.Age+"; Cat:"+Cat.Age);
};
};
测试:
public class numberMain {
public static void main(String[] args) {
Cat c=new Cat();
c.say();
Cat.print();
System.out.println("改值后:");
Cat.Age=5;
c.say();
c.print();
}
};
2、问题:如果子类继承父类的变量时?当修改这个子类变量时父类的值会不会也改变?
案例:
//父类
public class Animal {
public int height=1;
};
//子类
public class Cat extends Animal{
//public int height=1;
public void setHeight(int _h){
this.height=_h;
};
public int getHeight(){
return height;
}
public void say(){
//子类的值
Animal a=new Animal();
System.out.println("Animal类:"+a.height+"; Cat类:"+this.height);
};
};
测试:
public class numberMain {
public static void main(String[] args) {
Cat c=new Cat();
System.out.println("没修改前:");
c.say();
System.out.println("没修改后:");
c.setHeight(5);
c.say();
}
};
结果:
没修改前:
Animal类:1; Cat类:1
没修改后
Animal类:1; Cat类:5
由此可见:当你改变父类的普通变量时,子类的变量不会改变,但是如果是静态变量,一旦修改父类静态变量值,子类静态变量的值也会变。
以上是关于java:关于继承变量的值问题的主要内容,如果未能解决你的问题,请参考以下文章