nextInt() 方法用於從輸入流中讀取下一個整形資料(int)。 1. 讀取空格字元分隔的整數並轉換為int值。 2. 跳過輸入流中所有空格字元和製表符。 3. 如果輸入流中沒有可用的整數或輸入資料無法轉換為int類型,則拋出InputMismatchException異常。
nextInt() 方法在Java 中的用法
nextInt() 方法是Java 程式語言中Scanner 類的實例方法,用於從輸入流中讀取下一個整形資料(int)。
用法語法:
<code>int nextInt()</code>
傳回值:
nextInt() 方法傳回從輸入流讀取的下一個整形數據,如果輸入流中沒有可用的整數,則拋出InputMismatchException 異常。
詳細說明:
範例:
<code class="java">import java.util.Scanner; public class NextIntExample { public static void main(String[] args) { Scanner input = new Scanner(System.in); // 从控制台读取一个整数 int number = input.nextInt(); // 输出读取的整数 System.out.println("读取的整数:" + number); } }</code>
輸出:
<code>请输入一个整数: 123 读取的整数:123</code>
以上是nextint在java的用法的詳細內容。更多資訊請關注PHP中文網其他相關文章!