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

📄 arithimpl.java

📁 《JAVA分布式程序设计》一书的源代码。
💻 JAVA
字号:
import java.rmi.*;import java.rmi.server.UnicastRemoteObject;/** * @(#) Server.java * @author Qusay H. Mahmoud */public class ArithImpl extends UnicastRemoteObject implements Arith {    private String name;    public ArithImpl(String s) throws RemoteException {	super();	name = s;    }    public int[] add(int a[], int b[]) throws RemoteException {	int c[] = new int[10];	for (int i=0; i<10; i++) {	   c[i] = a[i] + b[i];	}          return c;    }    public static void main(String argv[]) {	System.setSecurityManager(new RMISecurityManager());	try {	   ArithImpl obj = new ArithImpl("ArithServer");	   Naming.rebind("//localhost/ArithServer", obj);	   System.out.println("ArithServer bound in registry");	} catch (Exception e) {	   System.out.println("ArithImpl err: " + e.getMessage());	   e.printStackTrace();	}    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -