How skip line in Intellij idea debug?

前端 未结 6 1478
借酒劲吻你
借酒劲吻你 2020-12-15 03:30

Suppose I have java code like this (only as Example):

public void someMethod(){
    int a = 3;
    int b = 2; // <-- stay debug here
    a = b + 2;
    Sy         


        
6条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-15 04:02

    You can't just skip 'line execution' when debugging. You can press F8 to step over.

提交回复
热议问题