Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Here is the code I'm having problems with:

The interface:

public interface anInterface {

    void printSomething();

}

Class that implements the interface:

public class aClass implements anInterface {

    public aClass() {

    }

    public void printSomethingElse() {
         System.out.println("Something else");
    }

    @Override
    public void printSomething() {
        System.out.println("Something");
    }
}

And the main function:

public static void main(String[] args) {
     anInterface object = new aClass();
     object.printSomething();   // works fine
     object.printSomethingElse();     // error
}

Error: Cannot find symbol. Symbol: method printSomethingElse();

Can anybody tell me why this won't work?

Is it possible in Java, when you have a class that implements some interface, to add methods to that class, even though those methods have not been declared in the interface? Or do I have to declare ALL the methods that I will be using in the interface?

I have also tried it in C# and doesn't work either.

What am I doing wrong?

Thanks!!!

share|improve this question

2 Answers

You have to declare all methods that you want to use in that case in the interface. The interface knows nothing of printSomethingElse and that is why you're getting the above error.

The purpose of an Interface is so that you can have a common list of functions across multiple similar implemented classes. For example, List is an interface which contains a 'list' of functions implemented in various ways by different classes such as LinkedList which uses a Doubly Linked list to provide the fucntionality of List and ArrayList which uses an Dynamically expanding array to do so.

share|improve this answer

It is certainly possible to add methods to the class, but since Java is strongly typed, you need to tell the compiler about the exact type before calling methods outside the interface:

((aClass)object).printSomethingElse();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.