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

When 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

Can you paste in your code so we can see what went wrong.

Thanks,

Steve.

Michelle Wallace
Michelle Wallace
2,376 Points

I 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
Michelle Wallace
2,376 Points

It's ok found my errors after trying to compile the PezDispenser.java file as per advice here :

https://teamtreehouse.com/forum/when-creating-a-pezdispenser-object-inside-the-repl-it-says-nosuchelementexception-wht-to-do

quite a funny booboo too.

Ha! Yes, interesting typo! :-D

Steve.