美文网首页
java9新特性-7-语法改进:接口的私有方法

java9新特性-7-语法改进:接口的私有方法

作者: 程序员驴子酱 | 来源:发表于2018-01-04 22:15 被阅读0次

    1.官方Feature

    213: Milling Project Coin

    Support for private methods in interfaces was briefly in consideration for inclusion in Java SE 8 as part of the effort to add support for Lambda Expressions, but was withdrawn to enable better focus on higher priority tasks for Java SE 8. It is now proposed that support for private interface methods be undertaken thereby enabling non abstract methods of an interface to share code between them.



    2.使用说明

    Java 8中规定接口中的方法除了抽象方法之外,还可以定义静态方法和默认的方法。一定程度上,扩展了接口的功能,此时的接口更像是一个抽象类。

    在Java 9中,接口更加的灵活和强大,连方法的访问权限修饰符都可以声明为private的了,此时方法将不会成为你对外暴露的API的一部分。



    3.使用举例

    相关文章

      网友评论

          本文标题:java9新特性-7-语法改进:接口的私有方法

          本文链接:https://www.haomeiwen.com/subject/bxbdnxtx.html