首页 > Java > java教程 > 正文

在Java 9中,接口中的私有方法有哪些规则?

WBOY
发布: 2023-08-31 12:57:11
转载
1331 人浏览过

在Java 9中,接口中的私有方法有哪些规则?

Java 9 在接口中添加了私有方法新功能。可以使用private修饰符来定义私有方法。我们可以在Java 9的接口中添加私有私有静态方法

接口中私有方法的规则:

  • 私有方法的主体位于接口意味着我们不能像通常在接口中那样声明为普通的抽象方法。如果我们试图声明一个没有主体的私有方法,那么它可能会抛出一个错误,指出“此方法需要主体而不是分号”。
  • 我们不能在接口中同时使用私有抽象修饰符。
  • 如果我们想从接口中的静态方法访问私有方法,那么方法可以声明为私有静态方法,因为我们无法对非静态方法进行静态引用。
  • A 非静态上下文中使用的私有静态方法意味着它可以从接口中的默认方法调用。

语法

<strong>interface <interface-name> {
   private methodName(parameters) {
      // some statements
   }
}</strong>
登录后复制

示例

interface TestInterface {
   <strong>default </strong>void methodOne() {
      System.out.println("This is a Default method One...");
      printValues(); // calling a private method
   }
   <strong>default </strong>void methodTwo() {
      System.out.println("This is a Default method Two...");
      printValues(); // calling private method...
   }
   <strong>private </strong>void <strong>printValues</strong><strong>()</strong> { <strong>// private method in an interface
</strong>      System.out.println("methodOne() called");
      System.out.println("methodTwo() called");
   }
}
public class PrivateMethodInterfaceTest implements TestInterface {
   public static void main(String[] args) {
      TestInterface instance = new PrivateMethodInterfaceTest();
      instance.methodOne();
      instance.methodTwo();
   }
}
登录后复制

输出

<strong>This is a Default method One...
methodOne() called
methodTwo() called
This is a Default method Two...
methodOne() called
methodTwo() called</strong>
登录后复制

以上是在Java 9中,接口中的私有方法有哪些规则?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:tutorialspoint.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板