📄 rmiserverimpl.java~2~
字号:
package com.tech.search;import java.rmi.RemoteException;/** * <p>Title: </p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2005</p> * <p>Company: </p> * @author 舒志新 * @version 1.0 */public class RmiServerImpl extends UnicastRemoteObject implements IRmiServer { public RmiServerImpl() { } public static void main(String[] args) { RmiServerImpl rmiServerImpl1 = new RmiServerImpl(); } public int add(int a, int b) throws RemoteException { /**@todo Implement this com.tech.search.IRmiServer method*/ throw new java.lang.UnsupportedOperationException("Method add() not yet implemented."); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -