扫码下载编程狮APP
import java.util.stream.Stream; public class Main { public static void main(String[] args) throws Exception { Stream.of("a1", "a2", "a3") .map(s -> s.substring(1)) .mapToInt(Integer::parseInt) .max() .ifPresent(System.out::println); } }
运行结果如下:
联系方式:
扫描二维码
下载编程狮App
扫码关注 领资料包