How skip line in Intellij idea debug?

前端 未结 6 1466
借酒劲吻你
借酒劲吻你 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:00

    Intellij recently published a blog post about a plugin called Jump to Line that can accomplish this, even though Intellij itself doesn't have this functionality. It really is surprising that Intellij still doesn't have this functionality, when Visual Studio has had it for so many years!

    https://blog.jetbrains.com/idea/2020/08/jump-to-any-line-while-debugging/

提交回复
热议问题