java.util.Scanner.hasNextShort()方法實例
java.util.Scanner.hasNextShort() 如果在此scanner輸入信息中的下一個標記可以使用nextShort()方法被解釋為一個short值的默認基數方法返回true。scanner不執行任何輸入。
聲明
以下是java.util.Scanner.hasNextShort()方法的聲明
public boolean hasNextShort()
參數
-
NA
返回值
當且僅當此scanner的下一個標記是在默認基數中的一個有效的short值,此方法返回true
異常
-
IllegalStateException -- 如果此scanner 已關閉
例子
下麵的示例演示java.util.Scanner.hasNextShort()方法的用法。
package com.yiibai; import java.util.*; public class ScannerDemo { public static void main(String[] args) { String s = "Hello World! 3 + 3.0 = 6 "; Short sh = 1; s = s + sh; // create a new scanner with the specified String Object Scanner scanner = new Scanner(s); // use US locale in order to be able to identify shorts in a string scanner.useLocale(Locale.US); while (scanner.hasNext()) { // check if the scanner's next token is a short System.out.println("" + scanner.hasNextShort()); // print what is scanned System.out.println("" + scanner.next()); } // close the scanner scanner.close(); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
false Hello false World! true 3 false + false 3.0 false = true 6 true 1