我想通过在控制台中键入命令来控制我的服务器,但是因为它不是模块化的,所以可以编写类似
的内容switch(command)
{
case 'command1':
command1();
break;
/* And so on */
}
在类Server中,如何创建绑定到函数的方法列表,以后我可以轻松修改并将其应用到我的代码的其他部分?
答案 0 :(得分:4)
Map<String, Action> actions = new HashMap<String, Action>();
// TODO populate the map
...
Action action = actions.get(command);
action.execute();
答案 1 :(得分:0)
我应该寻找现有的设计模式。命令模式符合我的需要。