JDK8新特性☞Function测试

/**
 * JDK8新特性☞Function接口测试 Function接口有一个参数并且返回一个结果,并附带一些和其他函数组合的默认方法
 * 
 * @author Administrator
 *
 */
public class Test1 {
public static void main(String[] args) {
Function function = String::valueOf;
Function then = function.andThen(Integer::valueOf);
Integer apply = then.apply(123);
System.out.println(apply);
}

}

测试结果


123

你可能感兴趣的:(测试类)