• 接口的静态方法


     1 package Port;
     2 /*
     3     从Java 8开始,接口当中允许定义静态方法。
     4     格式:
     5     public static void main(参数列表){
     6         方法体
     7     }
     8  */
     9 public interface InterfaceStatic {
    10     public static void Method(){
    11         System.out.println("这是一个静态方法");
    12     }
    13 }
     1 package Port;
     2 /*
     3     注意事项:不能通过接口实现类的对象来调用接口中的静态方法。
     4     正确用法:通过接口名称,直接调用其中的静态方法。
     5     格式:
     6     接口名称.静态方法名(参数);
     7  */
     8 public class Demo {
     9     public static void main(String[] args) {
    10         //创建了实现类对象
    11         Come impl = new Come();
    12         //静态和对象没有关系 所以不用new Come对象  静态只和类有关系
    13         //impl.Method(); 错误写法
    14         //直接通过接口名称调用静态方法
    15         InterfaceStatic.Method();
    16     }
    17 }
    1 package Port;
    2 
    3 public class Come implements InterfaceStatic {
    4 
    5 }
  • 相关阅读:
    UEditor百度编辑器
    form提交
    EL表达式
    spring mvc <mvc;resources>
    filter 拦截ajax请求
    ORACLE 数据库的级联查询 一句sql搞定(部门多级)
    快速排序算法
    实时监听输入框值变化
    javaScript cookie 操作
    webUtil
  • 原文地址:https://www.cnblogs.com/bingquan1/p/12652794.html
Copyright © 2020-2023  润新知