二、多个使用
新建3个接口类(A、B、C)
public interface A {
final int max = 50;
void decrease();
}
public interface B {
void add();
}
public interface C {
int i = 25;
void mult();
}
实现类(基本运算)
public class Exe implements A,B,C{
int x;
Exe(int t){
x = t;
System.out.println("x is :"+x);
}
public void decrease() {
for(int i