java.util.Scanner.nextBigDecimal()方法實例
java.util.Scanner.nextBigDecimal() 方法掃描輸入的下一個標記為一個BigDecimal。如果下一個標記與上述定義,則令牌通過移除所有組分隔符,通過Character.digit映射非ASCII數字為ASCII數字,以及將得到的字符串到BigDecimal轉換成一個BigDecimal值,如果正則表達式匹配BigDecimal(String) 構造。
聲明
以下是java.util.Scanner.nextBigDecimal()方法的聲明
public BigDecimal nextBigDecimal()
參數
-
NA
返回值
此方法返回從輸入信息掃描的BigDecimal
異常
-
InputMismatchException -- 如果下一個標記不匹配小數正則表達式,或者是超出範圍
-
NoSuchElementException -- 如果輸入被耗儘
-
IllegalStateException -- 如果此scanner 已關閉
例子
下麵的示例演示java.util.Scanner.nextBigDecimal()方法的用法。
package com.yiibai; 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