⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rmiserverimpl.java~2~

📁 rmi学习的示例代码
💻 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 + -