溫馨提示×

java中nextInt函數(shù)的用法是什么

小億
247
2023-11-10 09:55:50
欄目: 編程語言

nextInt函數(shù)是Java中Scanner類的一個方法,用于從標準輸入讀取下一個整數(shù)。它會跳過輸入中的任何空白字符,然后讀取到下一個整數(shù),并將其作為整數(shù)值返回。如果輸入中不包含整數(shù),或者輸入不合法,那么nextInt函數(shù)會拋出InputMismatchException異常。

下面是nextInt函數(shù)的用法示例:

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        
        System.out.print("請輸入一個整數(shù): ");
        int num = scanner.nextInt();
        System.out.println("你輸入的整數(shù)是:" + num);
        
        scanner.close();
    }
}

在上面的示例中,程序會提示用戶輸入一個整數(shù),并使用nextInt函數(shù)讀取該整數(shù)。然后,程序會將該整數(shù)打印輸出。最后,使用Scanner類的close方法關(guān)閉Scanner對象。

需要注意的是,如果輸入中包含非整數(shù)字符,nextInt函數(shù)會拋出InputMismatchException異常。為了避免這種情況,可以在調(diào)用nextInt之前,使用hasNextInt方法先進行判斷,以確保輸入是一個整數(shù)。

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        
        System.out.print("請輸入一個整數(shù): ");
        if (scanner.hasNextInt()) {
            int num = scanner.nextInt();
            System.out.println("你輸入的整數(shù)是:" + num);
        } else {
            System.out.println("輸入不合法,請輸入一個整數(shù)!");
        }
        
        scanner.close();
    }
}

0