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 trialBrett Dube
2,653 PointsMeet objects challenge 2 of 2
Can somebody help me understand where i am getting it wrong
public class Example {
public static void main(String[] args) {
System.out.println("We are going to create a GoKart");
GoKart gokart = new GoKart ("red");
System.out.printf ("New GoKart is %s", GoKartObject.getColor () );
}
}
2 Answers
Axel McCode
13,869 PointsHi Brett!
I believe the problem with your code is that you are using the wrong object reference. So instead of GoKartObject.getColor() use gokart.getColor()
Also you had a space between getColor and the method parenthesis.
public class Example {
public static void main(String[] args) {
System.out.println("We are going to create a GoKart");
GoKart gokart = new GoKart ("red");
System.out.printf("New GoKart is %s", gokart.getColor() );
}
}
Hope this helps!
-Axel
Brett Dube
2,653 PointsHey Axel
Thank you so much for your help, i have completed the challenge,
thanks a lot
Axel McCode
13,869 PointsNo problem, Glad I could help out!