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! Building the Model

Andre Kucharzyk
Andre Kucharzyk
4,479 Points

Why would we create Karaoke class outside of package com.teamtreehouse.model; What's the advantage of this behavior?

Why would we create Karaoke class outside of package com.teamtreehouse.model; What's the advantage of this behavior?

1 Answer

Yanuar Prakoso
Yanuar Prakoso
15,196 Points

It is best practice to make project structure to group your classes and other resources into groups. Therefore it will be easier to fix when it got bugs and also easier to be understand for other developer when they want to use your code. Karaoke.java here consist of initializing codes. On the other hand Song, SongBook represent a form of instantiated object. To be able to define their attributes and methods of behavior thus they called a model.