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


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



描述

這個java.util.Scanner.nextBigInteger(int radix)方法將輸入的下一個標記掃描為 BigInteger。如果下一個標記與上麵定義的 Integer 正則表達式匹配,則該標記被轉換為 BigInteger 值,就像通過刪除所有組分隔符,通過 Character.digit 將非 ASCII 數字映射為 ASCII 數字,並將結果字符串傳遞給 BigInteger (String, int) 具有指定基數的構造函數。

聲明

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

public BigInteger nextBigInteger(int radix)

參數

radix- 用於解釋令牌的基數

返回值

此方法返回從輸入掃描的 BigInteger

異常

  • InputMismatchException- 如果下一個標記與整數正則表達式不匹配,或者超出範圍

  • NoSuchElementException- 如果輸入用盡

  • IllegalStateException- 如果此掃描儀已關閉

示例

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

package com.tutorialspoint;

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

相關用法


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