位置:首頁 > Java技術 > Java.util包 > java.util.Scanner.hasNext()方法實例

java.util.Scanner.hasNext()方法實例

java.util.Scanner.hasNext() 方法如果此scanner有另一個標記在它的輸入,則返回true。在等待要scanner的輸入,此方法可能阻塞如果scanner不執行任何輸入。

聲明

以下是java.util.Scanner.hasNext()方法的聲明

public boolean hasNext()

參數

  • NA

返回值

當且僅當此scanner有另一個標記,此方法返回true

異常

  • IllegalStateException -- 如果此scanner已關閉

例子

下麵的示例演示java.util.Scanner.hasNext()方法的用法。

package com.yiibai;

import java.util.*;
import java.util.regex.Pattern;

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);

      // check if the scanner has a token
      System.out.println("" + scanner.hasNext());

      // print the rest of the string
      System.out.println("" + scanner.nextLine());

      // check if the scanner has a token after printing the line
      System.out.println("" + scanner.hasNext());

      // close the scanner
      scanner.close();
   }
}

讓我們來編譯和運行上麵的程序,這將產生以下結果:

true
Hello World! 3+3.0=6
false