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 (Retired) Meet Objects Creating New Objects

Challenge task 2 of 2

./Example.java:6: error: cannot find symbol System.out.printf (getColor("The GoKart is %s", color)); ^ symbol: method getColor(String,GoKart) location: class Example 1 error

Example.java
public class Example {

    public static void main(String[] args) {
      GoKart color = new GoKart ("red");
        System.out.println("We are going to create a GoKart");
            System.out.printf (GetColor("The GoKart is %s", color));
    }
}

1 Answer

public class Example {

    public static void main(String[] args) {
        System.out.println("We are going to create a GoKart");
     GoKart defa = new GoKart("Blue");
      System.out.printf("The GoKart is %s",defa.getColor());
    }
}

A bit in detailed ,

You should printf the text The GoKart is %s and you should call getColor method which is in GoKart object which currently in your color variable.

I know these were a bit confused at first time , I were experienced that before I written my first java program.

Thanks :D