nextInt函數是Java中Scanner類的一個方法,用于從標準輸入讀取下一個整數。它會跳過輸入中的任何空白字符,然后讀取到下一個整數,并將其作為整數值返回。如果輸入中不包含整數,或者輸入不合法,那么nextInt函數會拋出InputMismatchException異常。
下面是nextInt函數的用法示例:
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("請輸入一個整數: ");
int num = scanner.nextInt();
System.out.println("你輸入的整數是:" + num);
scanner.close();
}
}
在上面的示例中,程序會提示用戶輸入一個整數,并使用nextInt函數讀取該整數。然后,程序會將該整數打印輸出。最后,使用Scanner類的close方法關閉Scanner對象。
需要注意的是,如果輸入中包含非整數字符,nextInt函數會拋出InputMismatchException異常。為了避免這種情況,可以在調用nextInt之前,使用hasNextInt方法先進行判斷,以確保輸入是一個整數。
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("請輸入一個整數: ");
if (scanner.hasNextInt()) {
int num = scanner.nextInt();
System.out.println("你輸入的整數是:" + num);
} else {
System.out.println("輸入不合法,請輸入一個整數!");
}
scanner.close();
}
}