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 Harnessing the Power of Objects Abstraction at Play

aden ajayi
aden ajayi
552 Points

how do I fix this error: reached end of file while parsing

(public class Example {

  public static void main(String[] args) {
    // Your amazing code goes here...
System.out.println("we are making a new pez dispenser");
System.out.printf("FUN FACT: there are %d Pez allowed in every dispenser%n",
           PezDispenser.MAX_PEZ);
PezDispenser dispenser = new PezDispenser ("Hisoka");
System.out.printf ("the Dispenser is %s %n",
                        dispenser.getCharacterName()
                      );

    if (dispenser.isEmpty()) {
      System.out.println ("Dispenser is empty");
    }
    System.out.println("Filling the despenser with the good stuff...");
    dispenser.fill();
      if (!dispenser.isEmpty()){
        System.out.println("Dispenser is full");
      }
  }

1 Answer

Steven Parker
Steven Parker
229,644 Points

It's hard to tell with the unformatted code, but this error is typically caused by unmatched parentheses or brackets.

And to format posted code for easy reading, use the instructions for code formatting in the Markdown Cheatsheet pop-up below the "Add an Answer" area. :arrow_heading_down:   Or watch this video on code formatting.

aden ajayi
aden ajayi
552 Points

Thanks for the formatting tip, I feel like all my parentheses| brackets are in the right place tho.

Steven Parker
Steven Parker
229,644 Points

Now that it's formatted, it looks like neither the open parenthesis or open brace on the top line have closing counterparts.