1 package cn.candle.demo;2 3 import java.rmi.RemoteException ;4 5 /**6 * @author zhouj7 * 8 * 9 */10 interface Compute {11 public String [] calculate(Double d, String [] args) throws RemoteException ;12 }