Java.util.Scanner.nextBigDecimal()


描述

所述java.util.Scanner.nextBigDecimal()方法扫描输入为一个BigDecimal的下一个标记。如果下一个标记与上面定义的Decimal正则表达式匹配,则将标记转换为BigDecimal值,就好像通过删除所有组分隔符,通过Character.digit将非ASCII数字映射为ASCII数字,并将结果字符串传递给BigDecimal (String)构造函数。

声明

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

public BigDecimal nextBigDecimal()

参数

NA

返回值

此方法返回从输入扫描的BigDecimal

异常

InputMismatchException - 如果下一个标记与Decimal正则表达式不匹配,或者超出范围

NoSuchElementException - 如果输入已用尽

IllegalStateException - 如果此扫描程序已关闭

实例

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

package com.tutorialspoint;

import java.util.*;

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

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

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

      // find the next BigDecimal token and print it
      // loop for the whole scanner
      while (scanner.hasNext()) {

         // if the next is BigDecimal, print found and the decimal
         if (scanner.hasNextBigDecimal()) {
            System.out.println("Found :" + scanner.nextBigDecimal());
         }

         // if a BigDecimal is not found, print "Not Found" and the token
         System.out.println("Not Found :" + scanner.next());
      }

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

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

Not Found :Hello
Not Found :World!
Found :3
Not Found :+
Not Found :3.0
Not Found :=
Found :6
Not Found :true