要使用Scanner類輸入字符串,可以使用next()或者nextLine()方法。
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("請輸入字符串:");
String str = scanner.next();
System.out.println("輸入的字符串是:" + str);
}
}
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("請輸入字符串:");
String str = scanner.nextLine();
System.out.println("輸入的字符串是:" + str);
}
}
無論使用next()還是nextLine()方法,都需要在輸入字符串之前輸出提示信息,以便用戶知道需要輸入什么類型的數據。