package cn.sxt.opp;
public interface MyInterface {
/* 接口里面只能定义常量 规范:大写字母下划线表示名字 */
/* public static final */ int MAX_AGE = 100;
/* public abstract */void test01();// 接口中的方法 公开的抽象的
}
// 实现接口
class Myclass implements MyInterface {
public void test01() {
System.out.print(MAX_AGE);
System.out.print("test01()");
}
}