任何人都可以向我解释一下java中究竟是nextLine
方法的意思吗?
它是如何工作的 ???
和#why java跳过nextLine()
如果nextInt()
方法之前调用它作为下面的代码?? !!
int i;
String s;
Scanner sc=new Scanner(System.in);
i=sc.nextInt(); //enter 5
s=sc.nextLine(); // enter helloWorld
System.out.println(i+" ** "+s);
将打印
5 **
我尝试了很多代码......我尝试用next()
方法代替nextLine()
方法...而且它的工作...... nextLine()
中的问题方法