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 trialAyesha Ghayas
1,443 PointsWhen creating a PezDispenser Object inside the repl it say
When creating a PezDispenser Object inside the repl it says NoSuchElementException ,Wht to do? Please please help
2 Answers
Steve Hunter
57,712 PointsCan you paste in your code so we can see what went wrong.
Thanks,
Steve.
Michelle Wallace
2,376 PointsI have the same problem: ........ public class PezDispenser {
//--
public static final int MAX_PEZ = 12; private String mCharacterName; Private int mPezCount;
//---------constructors----------
public PezDispenser (String characterName) { // mCharacterName = characterName; //set the pez count state to 0 mPezCount = 0; }
//---------methods----------
//Make Pez empty - method public boolean isEmpty () { return mPezCount == 0; }
//load the pez - method pubic void load() { mPezCount = MAX_PEZ;
}
public String getCharacterName (){ return mCharacterName;
}
//---------behaviours---------
//THIS IS THE END---------------- //------------------------------- } ...... Some of my notes might not be right (Just trying to make it a bit clearer to start). Thanks
Michelle Wallace
2,376 PointsIt's ok found my errors after trying to compile the PezDispenser.java file as per advice here :
quite a funny booboo too.
Steve Hunter
57,712 PointsHa! Yes, interesting typo! :-D
Steve.