remoteechoimpl.java
来自「程序练习中包括书中实例程序代码和练习中要用到的代码,是压缩文件」· Java 代码 · 共 14 行
JAVA
14 行
package questions.c16;
import java.rmi.server.UnicastRemoteObject;
import java.rmi.RemoteException;
/** The interface definition for the remote object
*/
public class RemoteEchoImpl extends UnicastRemoteObject
implements RemoteEcho {
public RemoteEchoImpl() throws RemoteException {
super();
}
public void echo( String line ) throws RemoteException {
System.out.println( line );
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?