Java8新特性

1. 可以在接口里面定义静态方法。

    privateinterfaceDefaulableFactory {

        // Interfaces now allow static methods

        static Defaulablecreate(Supplier< Defaulable > supplier ) {

            return supplier.get();

    }

}








原文件路径:https://www.cnblogs.com/xingzc/p/6002873.html

你可能感兴趣的:(Java8新特性)