Java Scanner hasNextShort()方法

java.util.Scanner.hasNextShort(int radix) 如果在此scanner输入信息中的下一个标记可以使用nextShort()方法被解释为一个short值指定基数,方法返回true。scanner不执行任何输入。

1 语法

public boolean hasNextShort(int radix)

2 参数

radix:基数用于将标记解释为一个short值

3 返回值

此方法返回true当且仅当此scanner的下一个标记是指定基数有效的short值。

4 示例 

package com.yiidian;

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

public class Demo {
    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 with a radix 4
            System.out.println("" + scanner.hasNextShort(4));

            // 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
=
false
6
true
1

热门文章

优秀文章