interface

Posted hapyygril

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了interface相关的知识,希望对你有一定的参考价值。

接口 interface
--子类通过implements来实现接口中的规范
--一个类实现接口,必须实现接口中所有的方法,并且这些方法只能是Public
--接口支持多继承

package mypro01;

public interface MyInterface {
    //接口里只有常量和抽象方法
    
    /*public static final*/
    String MAX_GRADE="BOSS";
    int MAX_SPPED=120;
    
    /*public abstract*/
    public void test01();
    public int test02(int a,int b);

}

interface Interface1{
    public void test03();
}
package mypro01;

public class MyClass implements MyInterface,Interface1 {

    @Override
    public void test01() {
        System.out.println(MyInterface.MAX_GRADE);//调用属性        
        System.out.println("test01");
        
    }

    @Override
    public int test02(int a, int b) {
        System.out.println("test02");
        return a+b;
    }
    
    

    @Override
    public void test03() {
        
        System.out.println("test03");
    }

}
package mypro01;

public class Test7 {
    public static void main(String[] args) {
        /*
        MyInterface m1=new MyClass();
        MyClass m=(MyClass)m1;
        */
        MyClass m=new MyClass();
        m.test01();
        int res=m.test02(3,4);
        System.out.println(res);
        m.test03();
    }
}

 

以上是关于interface的主要内容,如果未能解决你的问题,请参考以下文章

如何在嵌套片段内的两个子片段之间进行通信

如何更改片段中的主要活动变量

php如何实现多继承?

paper 78:sniff抓包程序片段

SpringBoot 提示:java.lang.IllegalStateException: No primary or default constructor found for interface

0507 构造代码块和static案例,接口interface