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 trialAyhan Güler
8,658 PointsIn my opinion the challenge says "accessable on class level", which means private or protected to me - not public?
The "check work" buttons says "public" is required. Maybe you can reformulate the challenge for better understanding?
2 Answers
Gergely Horvath
Courses Plus Student 8,207 PointsYou may read the official documentation about class level variables: Understanding Class Members.
Siddesh Gannu
3,565 PointsIf you want anything to be available to you without instantiation, you need to use the keyword: "static". This will allow you to access the variable without creating an object of the class.
Yanuar Prakoso
15,196 PointsYanuar Prakoso
15,196 Pointsin my opinion public static final is the best method to represent this field in this challenge.
If you use private, the constant MAX_BARS can only be accessed within inside the class. Outside class will not be able to access it.
If you use protected only sub classes of this class can access this constant.
Thus you should use public to make it accessible on class level meaning outside this class. To prevent other classes to change this field constant we put final on it. The static means this field can be used without instantiate it first.
This is my opinion