?? helloimpl.java
字號:
import java.rmi.*;
import java.rmi.server.*;
/**
* This class implements the remote interface HelloInterface.
* @author M. L. Liu
*/
public class HelloImpl extends UnicastRemoteObject
implements HelloInterface {
public HelloImpl() throws RemoteException {
super( );
}
public String sayHello() throws RemoteException {
return "Hello, World!";
}
} // end class
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -