0
以下Java過程導致InputMismatchException錯誤的原因是什麼?Java InputMismatchException錯誤。是什麼導致了它?
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
String input = "hello 12345\n";
Scanner s = new Scanner(input);
s.next("hello ");
}
}
謝謝
想想next()方法做什麼。你能指望什麼? –
[你爲什麼不試着運行這段代碼?](http://ideone.com/N6Q45Q) – Crozin
@愛德華M.我期望它在要掃描的字符串開頭找到「hello」模式。 –