Search:

Type: Posts; User: javapenguin

Search: Search took 0.10 seconds.

  1. Replies
    4
    Views
    4,368

    Re: Jukebox Programming project

    if (this.list[j].equals(paramSong))

    You do realize that unless your Song class has a equals method, it will use Object's. Object's will return true if they refer to the same point in memory and...
  2. Replies
    4
    Views
    4,368

    Re: Jukebox Programming project

    You seem to have the same class in there twice.
  3. Replies
    4
    Views
    4,368

    Re: Jukebox Programming project

    this.list = new Song[0];

    It's a bad idea to make an array of Song equal to a single Song object/variable.
Results 1 to 3 of 3