我能理解为什么nextLine()
无法正常工作。
如果将nextLine()
更改为next()
,我的输入内容将不包含所有短语
case 7:
System.out.println("Press 1 to post on your wall \nPress 2 to post on a friend's wall");
int b=scan.nextInt();
if(b==1){
System.out.println("What do you want to post?");
String pm=scan.nextLine();
Message ms= new Message(loginUser.getUsername(),loginUser.getUsername() +" :"+ pm.toString());
message.add(ms);
}
if(b==2){
System.out.println("Whose wall do you want to post? (Write his/her username)");
String ph=scan.next();
for(int n = 0; n< users.size(); n++)
{
if(!loginUser.getUsername().equals(ph)
&& users.get(n).getUsername().equals(ph)){
System.out.println("What do you want to post?");
String postIt=scan.nextLine();
Message me= new Message( ph,ph +" : "+loginUser.getUsername() +" : " + postIt.toString() );
message.add(me);
}
}
}
luna=false;
break;
答案 0 :(得分:1)
您需要在调用scan.nextLine()
之后向scan.nextInt();
添加呼叫,并且不要使用其中的值:
int b=scan.nextInt();
scan.nextLine(); //Add this line
这是因为nextInt()
不会消耗nextLine()
中用来确定行尾的行终止符,而对nextLine()
的额外调用将为您正确使用。
例如,基本上在您将其赋予值2
之前,nextInt()
将使用2
,然后nextLine()
将使用2
之后的所有内容在那条线上,什么都没有。
如果您将next
或nextInt
与nextLine
混合使用,则始终需要这样做。