📄 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 + -