在Java中使用数组,打印数组

时间:2015-11-08 21:19:13

标签: java arrays

http://puu.sh/l3owc/e16f0fe76f.png(讲师提示)

基本上,我试图让用户通过为歌曲标题输入键入-1来退出循环。出于某种原因,它不适合我,它只保留值-1作为歌曲名称。我遇到的另一个问题是,我正在尝试打印“所有剩余的歌曲”,如提示所说,在每首歌曲输入后。对我来说,它只是删除了前一个,并显示了最新的歌曲标题和长度,当我希望它显示所有(是我的提示意味着什么)歌曲输入。

然后,用户可以删除歌曲,然后显示报告。我应该使用某种不断添加的报告字符串吗?不知道怎么做...我已经接近搞清楚了,只需要一些帮助。非常感谢这个网站的善良人士

import javax.swing.JOptionPane;

public class IT106_Playlist {

public static void main(String[] args) {

    final int MAX_SONGS = 106;
    int totalDuration = 0;
    int numSongs = 0;
    boolean exitVar = false;
    int i = 0;

    String[] songTitles = new String[MAX_SONGS];
    int[] songLengths = new int[MAX_SONGS];

    while (exitVar == false && numSongs <= songTitles.length) {

        do {

            songTitles[numSongs] = JOptionPane.showInputDialog(null,"Enter a song name, or type -1 to exit");
            if (songTitles[numSongs].equals("")) {
                JOptionPane.showMessageDialog(null,"Error: Please enter a valid song name, or type -1 to exit");
            } else if (songTitles[numSongs].equals("-1")) { 
                exitVar = true;
         }
        } while (songTitles[numSongs].equals("")); 



        do {
            try {
                songLengths[numSongs] = Integer.parseInt(JOptionPane.showInputDialog(null,"Enter a song length, e.g. 4."));
                if (songLengths[numSongs] > 0) { 
                    totalDuration += songLengths[numSongs]; 
                } else { 
                    songLengths[numSongs] = -1;
                    JOptionPane.showMessageDialog(null,"Error: please enter a valid song length, e.g. 4.");
                }
            } catch (NumberFormatException e) { 
                songLengths[numSongs] = -1;
                JOptionPane.showMessageDialog(null, "Error: please enter a valid song length, e.g. 4.");
            }

        } while (songLengths[numSongs] <= 0); 



        boolean addMore = true;

        while ((numSongs <= MAX_SONGS) && (addMore == true)) {
            JOptionPane.showMessageDialog(null, "Song #" + (i+1) + ": " + songTitles[i] + " length: " + songLengths[i] + "\n");
            i++;
            if (songTitles[i] == null) {
                addMore = false;
            }
        }
        numSongs++; 
     }
   }
  }

1 个答案:

答案 0 :(得分:1)

您只需设置exitVar = true,但它仍会执行您在下面写的所有内容。如果您希望它立即停止,则您必须始终检查existVar是否已true,或者您可以使用break和a实际中止对循环的进一步处理标签:

    songLoop: while (numSongs <= songTitles.length) {
        do {
            ...
            } else if (songTitles[numSongs].equals("-1")) {
                break songLoop;
            }
      ...

这样,songLoop中的任何内容都不会在程序到达break songLoop命令后执行。

如果您不希望在该行之后songTitles[numSongs].equals("-1")不再是这种情况,那么您必须首先覆盖该值或不将其写入其中(而不是一些临时变量,从那里进入数组)