What's point of declaring an interface as abstract? Same thing for an interface method. Is there a point to it?
eg.
public abstract interface Presenter {
public abstract void go(final HasWidgets container);
}
|
|
|
Where did you come across the chunk of code you have posted, any old java code base ? 9.1.1.1 abstract Interfaces 9.4 Abstract Method Declarations |
|||||||||||||||
|
|
Interfaces and interface methods are implicitly |
|||||||||||||
|
|
Makes no difference - interfaces and interface methods are always abstract but you don't have to add the modifier (and interface methods are always public so you don't need the public modifier too). From the JLS:
|
||||
|
|
|
Typically, you don't declare the interface, or its methods, as abstract. They are implicitly. The methods are also public, so you can skip that also. :-) |
|||
|
|
|
The default behavior of an interface is essentially equivalent to what you have in your example. Defining it as abstract is just redundant. |
|||
|
|
|
I think just verboseness, explicitness and consistency with the class syntax and semantics... You don't have to, but maybe it could help if some reader of your code is distracted or not very versed in Java. |
|||||
|
|
There is no point of declaring interface to be abstract. As the methods in the interface are abstract only.. One more thing abstract class can have both concrete and abstract methods but in the interface there should be only abstract methods. |
|||
|
|
|
have a look at this post What is "public abstract interface" in Java? interface is %100 abstract class. the keyword abstract is redundant here |
|||
|
|