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 Incrementing and Decrementing

why are we decrementing the dispenser with "--" instead of just doing "-="?

because the teacher said that doing "--" returns what the value 'used to be' and then it increments -- why do we need to do that if we are taking PEZ out. wouldn't it make more sense to simply minus 1 each time with a "-="?

1 Answer

Steven Parker
Steven Parker
229,644 Points

As used here, the return value is ignored so there's no functional difference between pezCount -= 1 and
pezCount--. The choice of the latter is probably only due to the fact that it takes up less space in the code.

thank you so much!