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 Annotations Using Java's Built-In Annotations Using @Override to Fix an Error

Fix the compiler error by making the HolaWorld's sayHelloTo method properly override the sayHelloTo method in the HelloW

I think I get what the task is asking (newbie) but unsure of how to layout the code? any ideas

HelloWorld.java
public class HelloWorld {
  private String programmingLanguage;

  public HelloWorld() {
    programmingLanguage = "Java";
  }

  public void sayHelloTo(String name) {
    System.out.printf("Hello, %s%n!", name);  
  }
}
HolaWorld.java
public class HolaWorld extends HelloWorld {
  @Override
  public void sayHelloTo() {
    String name = "";
    System.out.printf("Hola, %s%n!", name);
  }
}

2 Answers

Per Karlsson
Per Karlsson
12,683 Points

In HolaWorld.java you want to make sure that sayHelloTo() accepts the same parameters as the method in HelloWorld.java.

If you look at the two methods you can see that they differ a bit.

Try changing sayHelloTo() in HolaWorld.java to match the one in HelloWorld.java and see what happens.

I changed the method in the holaworld to match it with the on i the helloworld . i also removed String name = ""; because it has been declare already . this is my code below HolaWorld.java public class HolaWorld extends HelloWorld { @Override public void sayHelloTo(String name) { System.out.printf("Hola, %s%n!", name); } }