Java Scanner hasNextLong()方法

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

1 语法

public boolean hasNextLong(int radix)

2 参数

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

3 返回值

当且仅当此scanner的下一个标记是有效的long值此方法返回true。

4 示例 

package com.yiidian;

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

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

        String s = "Hello World! 3 + 3.0 = 6 ";
        Long l = 19864876349786l;
        s = s + l;

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

        // use US locale in order to be able to identify long in a string
        scanner.useLocale(Locale.US);

        while (scanner.hasNext()) {

            // check if the scanner's next token is a long with radix 4
            System.out.println("" + scanner.hasNextLong(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
false
19864876349786

热门文章

优秀文章