下面是为控制中断模式创建可重用解决方案的尝试。它建立在命令模式(操作和测试接口)之上。然而,我意识到我以前的 COBOL 思维阻碍了我,因为这个解决方案基于每个可以访问“全局变量”的 Action 和 Test 对象。在那之后我的直接想法是“需要像这样(更广泛的范围)的变量访问必须是一个已经发明的轮子。
如何让下面的所有操作和测试访问一组变量——一个不确定的组,因为这应该是一个可重用的解决方案?
public class ControlBreak {
public static void controlBreak(Action initialize,
Test endOfInput,
Test onChange,
Action breakAction,
Action detailAction,
Action getNext) {
boolean hasProcessed = false;
getNext.execute();
for (initialize.execute();endOfInput.test();detailAction.execute(),getNext.execute()) {
hasProcessed = true;
if (onChange.test()) {
breakAction.execute();
}
detailAction.execute();
}
if (hasProcessed) {
breakAction.execute();
} else {
// throw empty input exception
}
}
}