1. 程式人生 > >nextline()和next()

nextline()和next()

            String input1=sc.next();
            System.out.println(input1);
            String[] str=input1.split(" ");

輸入資料後提示陣列越界。

java的nextline()是以回車判斷下一次輸入;next()用空格/回車都可以斷定為下一次輸入。

解決方法:把next()換成nextline()。