java.util.Scanner.hasNextBigInteger(int radix)方法實例
java.util.Scanner.hasNextBigInteger(int radix) 如果在此scanner 的輸入的下一個標記可以使用nextBigInteger()方法被解釋為一個BigInteger指定基數方法返回true。scanner 不執行任何輸入。
聲明
以下是java.util.Scanner.hasNextBigInteger()方法的聲明
public boolean hasNextBigInteger(int radix)
參數
-
radix -- 用於將標記解釋為一個整數的基數
返回值
當且僅當此scanner 的下一個標記是有效的BigInteger此方法返回true
異常
-
IllegalStateException -- 如果此scanner已關閉
例子
下麵的示例演示java.util.Scanner.hasNextBigInteger()方法的用法。
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); while (scanner.hasNext()) { // check if the scanner's next token is a BigInteger with radix 5 System.out.println("" + scanner.hasNextBigInteger(4)); // print what is scanned System.out.println("" + scanner.next()); } // close the scanner scanner.close(); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
false Hello false World! true 3 false + false 3.0 false = false 6