What is the difference between specifying the abstract keyword on a method of an interface in Java, and not specifying it?
Like:
public void foo();
public abstract void foo();
|
|
There is no difference. See the JLS Interfaces - Abstract Method Declatations:
Also note:
|
|||
|
|
|
there is no difference all methods in interfaces are implicit abstract because to implement that interface all methods must be overriden ... strange that it´s working however |
|||
|
|