java.util.Scanner.nextBigInteger(int radix)方法實例
java.util.Scanner.nextBigInteger(int radix) 方法掃描輸入的下一個標記為一個BigInteger。如果下一個標記與上述定義,則令牌通過移除所有組分隔符,通過Character.digit映射非ASCII數字為ASCII數字,以及將得到的字符串到的BigInteger轉換為BigInteger值,如正則表達式匹配BigInteger(String, int) 構造帶有指定基數。
聲明
以下是java.util.Scanner.nextBigInteger()方法的聲明
public BigInteger nextBigInteger(int radix)
參數
-
radix -- 用於將標記解釋基數
返回值
此方法返回從輸入信息掃描的BigInteger
異常
-
InputMismatchException -- 如果下一個標記不匹配的Integer正則表達式,或者是超出範圍
-
NoSuchElementException -- 如果輸入被耗儘
-
IllegalStateException -- 如果此scanner 已關閉
例子
下麵的示例演示java.util.Scanner.nextBigInteger()方法的用法。
package com.yiibai; import java.util.*; public class ScannerDemo { public static void main(String[] args) { String s = "23 Hello World! 3 + 3.0 = 6 "; // create a new scanner with the specified String Object Scanner scanner = new Scanner(s); // scan next token as a Big Integer with radix 4 System.out.println("" + scanner.nextBigInteger(4)); // close the scanner scanner.close(); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
11