is there a way to add a default constructor to an interface

前端 未结 5 1195
梦如初夏
梦如初夏 2021-02-14 12:26

With default methods now added to Java 8, is there any way to create a default constructor?

I\'ve tried:

public interface KadContent
{
    publ         


        
5条回答
  •  既然无缘
    2021-02-14 13:08

    It does not make sense to provide an Constructor in an Interface.

    Check if it makes sense for you to provide a default initialize() method instead.

提交回复
热议问题