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

Harman Dubb
Harman Dubb
1,267 Points

Prompter prompter = new Prompter(game); What does every term in the line above signify/mean.

Hello everyone, I am confused as to what every term means in the line above. Where do each of the terms come from? Why are they there?

1 Answer

Gergely Horvath
PLUS
Gergely Horvath
Courses Plus Student 8,207 Points
Expression Meaning
Prompter new variable of Prompter type
prompter variable name
= assign value
new Prompter instantiate a class of Prompter type
(game) add the arguments the constructor of Prompter class needs

Readings: Creating Objects, Constructor