Java学习(67)Java多态——关于多接口中重名常量处理的解决方案

关于多接口中重名常量处理的解决方案

1. 问题提出1

以下程序能否正常运行?

interface One{
	static int x=11;
}

interface Two{
	final int x=22;
}

class Three{
	public static final int x=33;
}

public class TestOne implements One,Two{
	public void test() {
		System.out.println(x);
	}
	public static void main(String[] args) {
		new TestOne().test();
	}
}

答:不能正常运行,编写时就会报错,因为不知道时调用one中的test方法还是调用two中的test方法。
修改方案:

public class TestOne implements One,Two{
	public void test() {
		System.out.println(one.x);
		System.out.println(two.x);
	}

2. 问题提出2

以下程序能否正常运行?

public class TestOne extends Three implements One,Two{

	public void test(){
		System.out.println(x);
	}
	
	public static void main(String[] args) {
		new TestOne().test();
	}
}

答:不能正常运行,编写时就会报错,因为当父类中的属性与接口中的常量重名的时候,子类中的x无法分辨属于哪一个(父类还是接口)。

3. 问题提出3

以下程序能否正常运行?

public class TestOne extends Three implements One,Two{
	public int x=44;
	public void test(){
		System.out.println(x);
	}
	public static void main(String[] args) {
		new TestOne().test();
	}
}

答:能正常运行,结果为44,这说明只有在子类中定义独有的x成员,才不会报错。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值