Why declare an interface as abstract?

前端 未结 11 930
予麋鹿
予麋鹿 2020-12-13 03:36

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 Presen         


        
11条回答
  •  -上瘾入骨i
    2020-12-13 04:21

    Interfaces and interface methods are implicitly abstract even if not declared as so. So there is no need to explicitly specify it.

提交回复
热议问题