Java接口
程序员文章站
2022-06-13 21:28:28
...
package hello;
/**
* 接口内常亮的必须为全局常量,.
* 并且必须是子类实现的
* 接口口可以有多个
* 一个类可以继承多个接口和一个抽象类
* @author 王松
*
*/
interface Inter1{
public static final int AGE = 100;
public abstract void tell();
}
interface Inter2{
public static final int AE = 100;
public abstract void say();
}
class a implements Inter1,Inter2{
public void tell() {
System.out.println(Inter1.AGE);
}
public void say() {
}
}
public class InterDemo {
public static void main(String[] args) {
a A = new a();
A.tell();
}
}
上一篇: 彻底解决百度竞价推广效果差的问题
下一篇: 网站被降权了怎么办