當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.util.Scanner.hasNext()用法及代碼示例



描述

這個java.util.Scanner.hasNext(String pattern)如果下一個標記與從指定字符串構造的模式匹配,則方法返回 true。掃描儀不會通過任何輸入。以 hasNext(pattern) 形式調用此方法的行為與調用 hasNext(Pattern.compile(pattern)) 完全相同。

聲明

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

public boolean hasNext(String pattern)

參數

pattern- 指定要掃描的模式的字符串

返回值

當且僅當此掃描器具有與指定模式匹配的另一個標記時,此方法才返回 true

異常

IllegalStateException- 如果此掃描儀已關閉

示例

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

package com.tutorialspoint;

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's next token matches "World"
      System.out.println("" + scanner.hasNext("World"));

      // check if the scanner's next token matches "Hello"
      System.out.println("" + scanner.hasNext("Hello"));

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

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

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

false
true
Hello World! 3 + 3.0 = 6

相關用法


注:本文由純淨天空篩選整理自 Java.util.Scanner.hasNext() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。