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.
私はJavaにかなり慣れていないので、Scanner.classを複数回使用する方法を知りたいです
プログラムで複数の入力を許可することを意味します。
私は1つの入力のために私が使用できることを知っています:
Scanner scanner = new Scanner(System.in); String a = scanner.nextLine();
しかし、どうすればいいですか?
同じスキャナー オブジェクトを再利用できます。
Scanner scanner = new Scanner(System.in); String a = scanner.nextLine(); String b = scanner.nextLine(); // use the scanner object to get the next line