?? app1.java
字號:
import java.rmi.*;
import java.rmi.server.*;
public class app1 extends java.rmi.server.UnicastRemoteObject implements remote{
public app1() throws java.rmi.RemoteException{
super();
}
public String method()throws RemoteException{
return "This is remote method";
}
public void localMethod() throws java.rmi.RemoteException{
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -