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 Creating the MVP Prompting for Guesses

String guessInput variable

I am curious to know what data type does the scanner returns. Is it a String? That's why we declare the guessInput as a String? Because I think we could have declared it as a char and we could delete the decleration of guess. Food for thought.

2 Answers

Hi Anastasios. A Scanner in Java parses Strings and primitive types, except for char. So nextLine() has to be used here to return a String, and then we call charAt(0) on that String to get the first and only letter of the String. It is what it is :D

Thanks Lauren :)

You're welcome :)