I have this interface:
public interface Animal { public void Eat(String name); }
And this code here implements the interface:
The interface Animal is not be intantiated but be implemented by Dog.And a Dog is intantiated
Animal
Dog