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 trialFarnoosh Johnson
7,887 PointsJava Objects
How to create a new object using GoKart class since I do not have access to GoKart file or I only see example class in this file?
public class Example {
public static void main(String[] args) {
System.out.println("We are going to create a GoKart");
}
}
2 Answers
Kourosh Raeen
23,733 PointsTo create a new instance of a class you use the new keyword followed by the constructor, which has the same name as the class. In this case, the constructor takes a string parameter which is a color. So you can do something like:
GoKart goKart = new GoKart("Red");
Farnoosh Johnson
7,887 PointsThank you