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

前端 未结 5 1131
不知归路
不知归路 2021-02-14 12:09

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:04

    Yes, kind of! You can do:

    public interface MyInterface {
      MyInterface NO_OP = new MyInterface() {};
    }
    

提交回复
热议问题