我让用户输入一个字符串(命令)。我的代码是检查用户输入的内容。例如“加法”“除法”“减法”等...
并且会像这样附上一个数字。“ADD3”或“ADD5”
我应该如何以有效的方式对此进行编码,而不是做大量的 if 语句
这就是我现在所拥有的
public class Cell {
public static void main (String[] args) {
String command = "";
command= JOptionPane.showInputDialog(null, "Enter The Command" );
if (command.equalsIgnoreCase("ADD")) {
BLAH BLAH BLAH
}