I'll use an easy example for the sake of the question.
If I have an Interface
say Animal
which is like
public interface Animal {
void jump();
}
And I'm creating an object of the interface on the go, like
public class Main {
public static void main(String[] args) {
Animal cat = new Animal() {
@Override
public void jump() {
System.out.println("The cat jumped");
}
public void sleep() {
System.out.println("The cat slept");
}
};
cat.jump();
cat.sleep(); // cannot do that.
}
}
Now, I added the sleep()
method to the interface implementation and want that method to be callable from the place where I'm calling cat.jump()
. That is what I want. I see that throws an error and I do understand because the object is of type Animal
and Animal
does not have the sleep()
method.
If I do not want to add a new method to the interface
, in that case, what other options do I have to be able to call a method that I created in interface implementation?
The problem is that you didn't understand what it is to program for the interface. I believe you are thinking that it is a rule that you have created and must follow. It is not. It is something to understand why it exists and to do it when necessary.
You must declare a variable as the interface if you only need what is in the interface. If you need what is in the concrete class then you must declare the concrete class.
Casting or something else is adopting a mistake to fix the first mistake.
Interfaces should be used to segregate responsibilities. You program to interface so that what will receive the object can only access what is in that type. It is purposeful that it does not allow other members of the concrete object to access. If you used the interface, that code does not know what is not in the interface.
Do you still want to call
didSomething ()
and be through an interface? You have two possibilities:In fact, although it is useful to see how it works, programming for interface in something as simple as that is of no practical use. It is useful to use this technique when you have complex systems, which will need maintenance and flexibility to change the implementation without having to change the contract.