Java Scanner nextBigInteger()方法

java.util.Scanner.nextBigInteger(int radix) 方法扫描输入的下一个标记为一个BigInteger。如果下一个标记与上述定义,则令牌通过移除所有组分隔符,通过Character.digit映射非ASCII数字为ASCII数字,以及将得到的字符串到的BigInteger转换为BigInteger值,如正则表达式匹配BigInteger(String, int) 构造带有指定基数。

1 语法

public BigInteger nextBigInteger(int radix)

2 参数

radix:用于将标记解释基数

3 返回值

此方法返回从输入信息扫描的BigInteger。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.util.Scanner.nextBigInteger(int radix)方法的例子
 */
import java.util.*;

public class Demo {
    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

热门文章

优秀文章