标题:[求助]继承中的问题
取消只看楼主
yuanhong
Rank: 1
等 级:新手上路
帖 子:89
专家分:0
注 册:2006-4-2
 问题点数:0 回复次数:1 
[求助]继承中的问题
public class Inheritance{
public int x=3;
public void print(){
System.out.println("A");
}
}
class B extends Inheritance{
public int x=5;
public void print(){
System.out.println("B");
}
}
class Test{
public static void main(String[] args){
Inheritance i=new B();
i.print();//此处输出的是B
System.out.println(i.x);//此处为什么输入3呢
}
}
上溯造型中不时 基类的引用指向子类的一个实例阿?
搜索更多相关主题的帖子: 继承 
2007-10-24 12:51
yuanhong
Rank: 1
等 级:新手上路
帖 子:89
专家分:0
注 册:2006-4-2
得分:0 
晕,上溯造型阿,不然哪有多态阿,

2007-10-27 19:36



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-180374-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.044644 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved