Lambda表达式出现的问题

问题遇到的现象和发生背景

代码如下
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);
}
}
代码及其
运行截图

img

问题相关代码,请勿粘贴截图
运行结果及报错内容
我的解答思路和尝试过的方法
我想要达到的结果

sptNum("林青霞,30" , s -> Integer.parseInt(s.split(",")[1] , xx->xx+70)); 代码有误,[1] 后面少了一个 )xx+70)) 多了一个 ),修改后的代码如下:

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);
    }
}