abssolutioniohandler.java
来自「pso源程序」· Java 代码 · 共 30 行
JAVA
30 行
/**
* Description: provide the information for solution IO handler
*
* @ Author Create/Modi Note
* Xiaofeng Xie Jul 12, 2006
*/
package maosKernel.infoIO;
import maosKernel.memory.*;
public abstract class AbsSolutionIOHandler {
public AbsSolutionIOHandler() {
}
public void readSolution(EncodedState state, String content) throws Exception {
this.naiveReadSolution(state, content);
}
public String writeSolution(EncodedState state) throws Exception {
throw new UnsupportedOperationException();
}
protected void naiveReadSolution(EncodedState state, String content) throws Exception {
throw new UnsupportedOperationException();
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?