次のような文字列を再利用する方法があるかどうか疑問に思っていました。
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
ユーザー入力がループしている場合、何かが真にならない場合でも壊れません。