我一直想知道是否有任何方法可以重用字符串,例如:
import java.io.Console;
public class input {
public static void main (String[] args) {
Console console = System.console();
String input = console.readLine("Type username: "); //user input
// name code
// clear string
String input = console.readLine("Hello, what would you like to do: ");
// other code
}
}
通过清除 处的字符串//clear string
,因此如果您有一个循环的用户输入,如果某件事不成立,它就不会中断。