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

taylor gilham
taylor gilham
3,751 Points

cannot find symbol

class PezDispenser { public final int MAX_PEZ = 12; final private String characterName;

public PezDispenser(String characterName){ this.characterName = characterName; }

public String getCharacterName(){ return characterName; }

}

when i run this code i get this error | Error:
| cannot find symbol
| symbol: class PezDispenser
| PezDispenser pd = new PezDispenser("Yoda");
| ^----------^

1 Answer

Johan Cederschiöld
Johan Cederschiöld
5,708 Points

Hi Taylor, I suspect that your problem can be related to the fact that you've declared the instancevariable characterName as final. This declaration will make stop all changes to the variable. Try removing the "final" from your the instancevariable (making it only private String characterName;

Good luck