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 trialJaden Kuhn
928 PointsSyntax error
I have the public final int MAX_PEZ = 12; When I say in my main class (class objects name).MAX_PEZ; It shows an error, Syntax error, insert "AssignmentOperator Expression" to complete expression. What did I do wrong?
2 Answers
Mustafa Alordowny
4,495 Pointsthe problem is in your context You wrote
PezDispenser.MAX_PEZ;
You didn't tell the program what to do with it .For example you could have wrote System.out.printf(PezDispenser.MAX_PEZ);
Jaden Kuhn
928 PointsThanks it worked