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 Objects (Retired) Harnessing the Power of Objects Helper Methods and Conditionals

Scott Sanders
PLUS
Scott Sanders
Courses Plus Student 1,826 Points

repl error

java> PezDispenser pd = new PezDispenser("yoda");
ERROR: ';' expected
PezDispenser method$9hc4qk1o5sgtyi0pzbu3()
^ Why am i getting the error in repl

3 Answers

public static final int MAX_PEZ = 12 needs a semicolon.

try this...

public static final int MAX_PEZ = 12;

Did you load the Jave file into the repl?

java> :load PezDispenser.java
Loaded source file from PezDispenser.java
java> PezDispenser pd = new PezDispenser("Yoda");
PezDispenser pd = PezDispenser@49bc7d8d
java>

Otherwise, check the PezDispenser class to make sure you're not missing a semicolon somewhere.

Scott Sanders
PLUS
Scott Sanders
Courses Plus Student 1,826 Points

i did load it into repl ill link my code but i think i got it all the way its supposed to be https://w.trhou.se/cynyuw9d7i