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 trialMustafa Khan
6,224 PointsObjects
In the video he uses object like a data type, but he doesn’t have an object class, so what does it mean: Object object = new Object();
1 Answer
michael lynch
9,560 PointsObject is a class which is built into java, he is referring to this https://docs.oracle.com/javase/7/docs/api/java/lang/Object.html
Linda de Haan
12,413 PointsLinda de Haan
12,413 PointsObject is the superclass of all existing objects in Java. So just like you could instantiate your own classes, you can do it with Object as well.