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) Delivering the MVP Refactoring

confused

Hi, im confused. IN the video Craig makes another applyGuess method that is this time a boolean. But he already defined another one. Now i know that this one is unique because of the argument and type and all, but he only changes a little bit in the prompter class. So both methods interact with it because of the name ?

1 Answer

Allan Clark
Allan Clark
10,810 Points

This is called method overloading. He creates a second method with the same access mod, return type, and method name. The only difference in the method signatures are the parameters they take, because the method needs to execute completely different code if it received a String or a char. Overloading allows the JVM to decide which version of the method to use based on what parameter the client is sending.

http://en.wikipedia.org/wiki/Function_overloading