Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,如果输入print hi there,我将如何使用 case 语句删除print和输出?hi there
print hi there
print
hi there
几天来我一直在思考如何做到这一点,但我似乎无法弄清楚。
您的问题不是很清楚,但是如果您想将第一个单词用作一种“命令”,我想您可以提取第一个单词并在其上使用 switch。假设您的输入位于名为 input 的字符串中:
String firstWord = input.substring(0, input.indexOf(' ')); switch(firstWord) { case "print" : System.out.println(input.substring(input.indexOf(' ') + 1)); break; .... }