標準入力を読む時等使える.
Input bufferのキューに入っている入力を順に読んでいく.
以下使用例
この問題に対する回答
.java
import java.util.Scanner;
public class Solution {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int i = scan.nextInt();
double d = scan.nextDouble();
scan.nextLine(); // nextDoubleでは行の最後まで読まれていない可能性があるためスキップしたい.
String s = scan.nextLine();
System.out.println("String: " + s);
System.out.println("Double: " + d);
System.out.println("Int: " + i);
}
}
-
nextInt()
: Intを見つけるまでQueueを進めて、そのIntをQueueから出した時点でそのInt値を戻り値として返す. -
nextDouble()
: Doubleバージョン -
nextLine()
: 行の最後にたどり着くまでを、Queueから出して戻り値とする.