一、前言
我们在使用IDEA中最常用的就是debug,很多人只是让他停下来看一下,很多高阶的不知道怎么使用,小编也是最近才知道!所以马上分享给大家,这里主要是对Stream留的debug,也就是lambda表达式进行debug。还有条件断点,符合条件的才会被断点捕捉到。
二、干货一:对lambda表达式进行加断点
public class Debug {
public static void main(String[] args) {
debugStream();
}
public static void debugStream(){
List<Integer> list = Arrays.asList(1,20,21,44,56);
list.stream()
.filter(x -> x > 21)
.map(x -> x + 100)
.forEach(System.out::println);
}
}
断点展示
三、干货二:打条件断点
public class Debug {
public static void main(String[] args) {
debugCondition();
}
public static void debugCondition(){
List<Integer> list = Arrays.asList(1,20,21,44,56,22,12,345);
for (Integer integer : list){
System.out.println(integer);
}
}
}
断点展示
四、总结
每天一个小技巧,美味又健康哈!!!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/85240.html