java 接口的成员变量_java-私有接口中的变量

这篇博客探讨了Java中接口的访问控制特性,强调了成员接口的私有性以及静态字段的继承规则。内容指出,接口字段默认为公共且被实现类继承,而私有成员接口只能在封闭的顶级类或枚举中使用,以限制外部代码对其的实现。通过这样的设计,可以保护接口不被不应修改的部分进行实现。
摘要由CSDN通过智能技术生成

您的成员界面是私有的.继承的静态字段不是私有的.

私有成员接口不能用作封闭的顶级类或枚举之外的类型.这对于防止外部代码实现您可能希望更改的接口很有用.从JLS:

The access modifiers protected and private pertain only to member interfaces within a directly enclosing class or enum declaration (§8.5.1).

接口字段是公共的,并由实现该接口的类继承.从JLS:

A class inherits from its direct superclass and direct superinterfaces all the non-private fields of the superclass and superinterfaces that are both accessible to code in the class and not hidden by a declaration in the class.

如果要使该字段仅在实现成员接口的类中可访问,则可以将其声明放在封闭的顶级范围中.

class TestingInterfaceClass {

private static final int i = 0;

private interface InnerInterface {

// ...

}

class inner implements InnerInterface {

// ...

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值