我只是在我的第二个学期的java中,所以对我的问题可能有一个非常简单的解决方案,但是因为这个原因,我一直把头发拉了几个小时。以下代码用于收集用户输入并在数组中存储实例的信息。
没有机会为专辑名称输入任何内容。输出如下。
输入5首歌曲
标题:标题
作者:author1
口译员:int1
发布年份:2000年 专辑:文件名://为什么不收集输入并将文件名放在下一行。
如果有人能指出我正确的方向,我会非常感激。我将下面的两种方法包括在内,以防它们与我的问题有关。感谢您提供的任何帮助。
public static void main(String[] args){
Scanner kybd = new Scanner(System.in);
Song[] songTest = new Song[5];
System.out.println("Enter 5 songs\n");
//TEST
for(Song x:songTest)
{
x = new Song();
System.out.print("Title: ");
x.setTitle(kybd.nextLine());
System.out.print("Author: ");
x.setAuthor(kybd.nextLine());
System.out.print("Interpreter: ");
x.setInterpreter(kybd.nextLine());
System.out.print("Year released: ");
x.setYearReleased(kybd.nextInt());
System.out.print("Album: ");
x.setAlbum(kybd.nextLine()); //this doesn't allow for input. it prints "File name:" and skips the user input for an album name. Also, when I comment out Year released, the problem goes away.
System.out.print("File name: ");
x.setFileName(kybd.nextLine());
System.out.print(x);
System.out.println();
}
public void setYearReleased(int y)
{
if (y>0 && y<2013)
this.yearReleased = y;
else
{
System.out.print ("This song is not that old");
this.yearReleased = -5;
}
}
public void setAlbum(String a)
{
this.album = a;
}
答案 0 :(得分:3)
您需要在kybd.nextLine()
之后执行kybd.nextInt()
,以便以下kybd.nextLine()
无法捕获为nextInt()
按Enter键时使用的换行符。
答案 1 :(得分:2)
x.setYearReleased(kybd.nextInt());
对行字符的结尾不做任何操作,并且会保留在给出您看到的行为的行上。快速解决方法可能是在此之后添加另一个ktbd.nextLine();
以在下一个int之后跳过该行上的任何其他内容。
System.out.print("Year released: ");
x.setYearReleased(kybd.nextInt());
kybd.nextLine()
System.out.print("Album: ");
x.setAlbum(kybd.nextLine());