问题遇到的现象和发生背景
代码如下
public class TestOfDemoNoneName {
public static void main(String[] args) {
sptNum("林青霞,30" , s -> Integer.parseInt(s.split(",")[1] , xx->xx+70));
}
private static void sptNum(String s, Function<String,Integer> e,Function<Integer,Integer> add){
Integer ok = e.andThen(add).apply(s);
System.out.println(ok);
}
}
代码及其
运行截图