Java Scanner hasNextLong()方法

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

1 语法

public boolean hasNextLong()

2 参数

3 返回值

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

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.util.Scanner.hasNextLong() 方法的例子
 */
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 along
            System.out.println("" + scanner.hasNextLong());

            // 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
19864876349786

热门文章

优秀文章