Java Scanner nextInt()方法
java.util.Scanner.nextInt() 方法扫描输入的下一个标记为int。形式nextInt()方法的调用和调用nextInt(radix)的行为方式完全相同,其中的radix是此扫描器的默认基数。
1 语法
public int nextInt()
2 参数
无
3 返回值
此方法返回从输入信息扫描的整型。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.util.Scanner.nextInt()方法的例子
*/
import java.util.*;
public class Demo {
public static void main(String[] args) {
String s = “Hello World! 3 + 3.0 = 6.0 true “;
// create a new scanner with the specified String Object
Scanner scanner = new Scanner(s);
// find the next int token and print it
// loop for the whole scanner
while (scanner.hasNext()) {
// if the next is a int, print found and the int
if (scanner.hasNextInt()) {
System.out.println(“Found :” + scanner.nextInt());
}
// if no int is found, print “Not Found:” and the token
System.out.println(“Not Found :” + scanner.next());
}
// close the scanner
scanner.close();
}
}
输出结果为:
Not Found :Hello
Not Found :World!
Found :3
Not Found :+
Not Found :3.0
Not Found :=
Not Found :6.0
Not Found :true
今天的文章java中scanner中nextint,Java Scanner nextInt()方法分享到此就结束了,感谢您的阅读。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/11131.html