如何使用Java的Scanner

当读取标准输入时可以使用。

依次读取存储在输入缓冲区队列中的输入。

以下是使用例子:

对于这个问题的答案

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から出して戻り値とする.

广告
将在 10 秒后关闭
bannerAds