I have been programming for a little while now, and I have a question on the use of public methods. I am working on a vending machine program, and I have a private method setUpMachine() to initialize the game and set up the objects. I have another private method startMachine() that starts the game and prompts the user for input. It then passes the input to yet another private method checkInput() that checks to see if the input is valid... but this is where I run into not so much of a "problem", but a weird feeling of me not doing something correctly. I need access to the objects that are in my first method, setUpMachine() for my third method checkInput(). The problem is that I have many objects (candy, chips, soda, cookie), and passing them all to check perimeters just doesn't seem right. In other words, doing this:
checkInput(FoodType candy, FoodType chips, FoodType soda, FoodType cookie)
doesn't seem right. Does this mean, that if I use private methods, I have to pass objects every time I want to use them? I read that making public methods is bad practice.
An explanation on this would be nice, not so much an explanation telling me my coding is inefficient, but more an explanation describing when and how to use private methods, or if there is another way to go about doing this.
setUpMachinetoo. That will depend on your design, but IMO it would be better to do it in the constructor in order to avoid using these attributes in a method before you have set them before. – Luiggi Mendoza Oct 21 '12 at 0:51privatemethod cannot be called outside of the class itself, but has access to all properties of the class. A bit more info -protectedis accessible within the package, andpublicis globally accessible. – doublesharp Oct 21 '12 at 0:52