java.util.Scanner.next()方法實例
java.util.Scanner.next() 方法查找並返回來自此scanner的下一個完整標記。一個完整的令牌之前和之後的輸入相匹配的分隔符的模式。在等待要掃描的輸入此方法可能阻塞,即使hasNext()以前調用返回true。
聲明
以下是java.util.Scanner.next()方法的聲明
public String next()
參數
-
NA
返回值
此方法返回下一個標記
異常
-
NoSuchElementException -- 如果冇有更多的令牌可用
-
IllegalStateException -- 如果此scanner 已關閉
例子
下麵的示例演示java.util.Scanner.next()方法的用法。
package com.yiibai; import java.util.*; public class ScannerDemo { public static void main(String[] args) { String s = "Hello World! 3 + 3.0 = 6 "; // create a new scanner with the specified String Object Scanner scanner = new Scanner(s); // find the next token and print it System.out.println("" + scanner.next()); // find the next token and print it System.out.println("" + scanner.next()); // close the scanner scanner.close(); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Hello World!