java不能修饰interface_为什么接口的方法的访问修饰符只能是public不能是protected?...

个人推测:语言的设计者可能觉得这增加了interface的access model的复杂度。

负责实现接口的class的会很为难,如果implementation和interface不在一个package下面,你该不该implement一个protected method呢?

下面我用2个实例说明,第一个让你觉得protected interface method不太make sense。另一个让你觉得,它就完全不make sense。

比如说,在sample.interface这个包下面有一个ISomething。

package sample.interface;

interface ISomething {

protected foo1() { ... }

}

下面的case就怪怪的。

package a.place.of.nowhere;

// some code tries to use ISomething

ISomething someting = initializeSomething();

something.foo1();   // 抱歉,foo1是被保护的,和你不是一个package的,你滚吧。

// ME: shit... if I cannot use anything of this interface, why the heck you expose this interface to me...

更不make sense的:

package a.place.of.nowhere;

// some code tries to implements ISomething

class SomethingImpl implements ISomething {

// 抱歉,尽管你想implement foo1这个接口方法,但是由于你在a.place.of.nowhere这个package,foo1()对你是不可见的。走人吧。

protected void foo1() {...}

如此一来,class implement和interface就要在一个package下面。这是什么鬼啊,我可能要实现多个interface,又不能分身。。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值