Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Java Java Data Structures Efficiency! Menu UI

Why did we pass songBook in KaraokeMachine object?

Why

KaraokeMachine machine = new KaraokeMachine(songBook);

Why songBook as parameter?

Tonnie Fanadez Jennifer Nordell andren

1 Answer

Simon Sporrong
Simon Sporrong
35,097 Points

Probably because the KaraokeMachine constructor takes a SongBook as a parameter. You can see it on line 18 in the video at 03:51 in the video.

So in order to instantiate a KaraokeMachine object you need to pass it a SongBook. What good is a karaoke machine without songs to sing in it? :)

Hope it helps!

Got it thanks