关于老师代码中的删除成员的部分
我下载了课程代码,里面的model.view包下有整个程序的完整代码。下面是代码中的DELETE部分。
整个代码的执行过程就是,当删除成功后,没有任何提示信息,如果再输入一个ID就再执行删除过程,
怎么修改代码,使删除成功后提示我们要进行的操作,比如提示继续删除或返回主菜单呢?
else if(OPERATION_DELETE.equals(in.toUpperCase()) ||OPERATION_DELETE.substring(0, 1).equals(in.toUpperCase()) ||OPERATION_DELETE.equals(pervious)){ pervious = OPERATION_DELETE; if (1 == step) { System.out.println("请输入要删除的女神ID:"); } else if (2 == step) { Integer id = null; try { id = Integer.valueOf(in); try { action.del(id); step = 1; System.out.println("删除女神信息成功"); } catch (Exception e) { System.out.println("删除女神信息失败"); } } catch (Exception e) { System.out.println("请输入正确的女神ID:"); step = 1; } } if (OPERATION_DELETE.equals(pervious)) { step++; }