接口与继承字段常量关系
来源:技术人生 责任编辑:栏目编辑 发表时间:2013-07-02 04:46 点击:次
public class C extends B implements A {
public void pX(){
System.out.println(x);
}
public static void main(String[] args) {
new C().pX();
}
}
public void pX(){
System.out.println(x);
}
public static void main(String[] args) {
new C().pX();
}
}
class B{
int x =1;
}
int x =1;
}
interface A{
int x = 0;
}
int x = 0;
}
只需要把B类中的x声明为private私有即可。几口定义的变量常量均为常量,定义的方法为抽象方法。、
所以字段x重复了,及常量不可在赋值。
相关新闻>>
- 发表评论
-
- 最新评论 更多>>