Java Scanner hasNextFloat()方法

java.util.Scanner.hasNextFloat() 如果在此scanner输入信息中的下一个标记可以解释为使用nextFloat()方法一个float值,方法将返回true。scanner不执行任何输入。

1 语法

public boolean hasNextFloat()

2 参数

3 返回值

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

4 示例 

package com.yiidian;

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

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

        String s = "Hello World! 3 + 3.0 = 6 ";
        Float f = 3.12345f;
        s = s + f;

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

        // assign locale as US to recognize float numbers in a string
        scanner.useLocale(Locale.US);

        while (scanner.hasNext()) {

            // check if the scanner's next token is a float
            System.out.println("" + scanner.hasNextFloat());

            // print what is scanned
            System.out.println("" + scanner.next());
        }

        // close the scanner
        scanner.close();
    }
}

输出结果为:

false
Hello
false
World!
true
3
false
+
true
3.0
false
=
true
6
true
3.12345

热门文章

优秀文章