java 函数式接口的使用
示例1 //@FunctionalInterface 注解修饰的接口只能有一个抽象方法 @FunctionalInterface public interface IConvert < F , T > { //抽象方法 将F转换为T (convert 转换) T convert ( F f ) ; } public class Something { // constructor methods Something ( ) { } Something ( String something ) { System . out . println ( something ) ; } // static methods static String startsWith ( String s ) { return String . valueOf ( s . charAt ( 0 ) ) ; } // object methods String endWith ( String s ) { return String . valueOf ( s . charAt ( s . length ( ) - 1 ) ) ; } void endWith ( ) { } public static void main ( String [ ] args ) { //访问静态方法 IConvert <