nextInt()
方法是 Java 中 Scanner
类的一个方法,用于从输入流中读取下一个整数。它不能直接读取字符串。如果你想要读取字符串,可以使用 nextLine()
方法。
下面是一个简单的示例,展示了如何使用 nextInt()
和 nextLine()
方法:
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("请输入一个整数:");
int number = scanner.nextInt();
System.out.println("你输入的整数是:" + number);
// 读取换行符之前的内容,即字符串
scanner.nextLine();
System.out.print("请输入一个字符串:");
String text = scanner.nextLine();
System.out.println("你输入的字符串是:" + text);
scanner.close();
}
}
在这个示例中,我们首先使用 nextInt()
方法读取一个整数,然后使用 nextLine()
方法读取换行符之前的内容(即字符串)。注意,在读取整数后,我们需要调用 nextLine()
方法来消费掉换行符,否则下一次调用 nextLine()
时将直接读取到换行符,而不是用户输入的字符串。