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 Meet Objects Creating Classes

How can PezDispenser be put in the place of 'String'? PezDispenser is not a variable.

public class Example {

public static void main(String[] args) { // Your amazing code goes here... System.out.println("We are making a new PEZ Dispenser"); PezDispencer dispenser = }

}

1 Answer

Rick Gleitz
Rick Gleitz
47,197 Points

Hi Abhishek, I hope I explain this right, this is how I understand it, but I could get some details wrong. PezDispenser is a class, which is also a type (like String or Int - which are also classes, I believe), so he is creating a new instance of the PezDispenser class type with the variable named dispenser. There's more to this having a lot to do with memory allocation (which is presently beyond my understanding), but I think that's the very basic explanation. If someone could add to, or correct my understanding, we'd both learn something new. Hope this helps in some small way.

Yes I understood, thank you!