?? etotalclass.java
字號:
interface E{
public static final int E1=100;
public void C1();
public void D1();
}
interface M{
void M1();
}
public class EtotalClass implements E,M{
public void C1(){
System.out.println("E 接口C1行為方法實現");
}
public void D1(){
System.out.println("E 接口D1行為方法實現");
}
public void M1(){
System.out.println("M 接口M1行為方法實現");
}
public void E1(){
System.out.println("自身的方法實現");
}
public static void main(String a[]){
EtotalClass e=new EtotalClass();
e.C1();
e.D1();
e.M1();
e.E1();
e.E1;}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -