Java Scanner nextFloat()方法
java.util.Scanner.nextFloat() 方法扫描输入的下一个标记为float。此方法将抛出InputMismatchException,如果如下文所述的下一个标记不能转换为有效的float值。如果转换成功,则scanner行匹配的输入。
1 语法
public float nextFloat()
2 参数
无
3 返回值
此方法返回从输入信息扫描的浮点值。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.util.Scanner.nextFloat()方法的例子
*/
import java.util.*;
public class Demo {
public static void main(String[] args) {
String s = "Hello World! 3 + 3.0 = 6.0 true ";
Float f = 1.2385f;
s = s + f;
// create a new scanner with the specified String Object
Scanner scanner = new Scanner(s);
// use US locale to be able to identify floats in the string
scanner.useLocale(Locale.US);
// find the next float token and print it
// loop for the whole scanner
while (scanner.hasNext()) {
scanner.next();
// if the next is a float, print found and the float
if (scanner.hasNextFloat()) {
System.out.println("Found :" + scanner.nextFloat());
}
}
// close the scanner
scanner.close();
}
}
输出结果为:
Found :3.0
Found :3.0
Found :6.0
Found :1.2385
热门文章
优秀文章