Java.util.Scanner.useRadix()


描述

该java.util.Scanner.useRadix(int radix)方法将此扫描器的默认基数设置为指定基数。

声明

以下是java.util.Scanner.useRadix()方法的声明

public Scanner useRadix(int radix)

参数

radix - 扫描数字时使用的基数

返回值

This method returns this scanner

异常

IllegalArgumentException - 如果radix超出范围

实例

以下示例显示了java.util.Scanner.useRadix()方法的用法。

package com.tutorialspoint;

import java.util.*;

public class ScannerDemo {
   public static void main(String[] args) {

      String s = "Hello World! 3 + 3.0 = 6.0 true ";

      // create a new scanner with the specified String Object
      Scanner scanner = new Scanner(s);

      // print a line of the scanner
      System.out.println("" + scanner.nextLine());

      // change the radix of the scanner
      scanner.useRadix(32);

      // display the new radix
      System.out.println("" + scanner.radix());

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

让我们编译并运行上面的程序,这将产生以下结果

Hello World! 3 + 3.0 = 6.0 true
32