📄 rmisolver.java
字号:
import java.rmi.*;
import java.io.OutputStream;
public interface RMISolver extends java.rmi.Remote
{
public boolean solve() throws RemoteException;
public boolean solve(RMIProblemSet s,
int numIters) throws RemoteException;
public RMIProblemSet getProblem() throws RemoteException;
public boolean setProblem(RMIProblemSet s) throws RemoteException;
public int getIterations() throws RemoteException;
public boolean setIterations(int numIter) throws RemoteException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -