IntelliJ debugger gets stuck

后端 未结 5 791
死守一世寂寞
死守一世寂寞 2021-02-02 07:38

I\'m debugging a normal Java application, no GUI, just a lot of computations and ~5 calls in the stack for the main thread when the problem occurs. Basically it keeps saying \"C

5条回答
  •  北海茫月
    2021-02-02 08:15

    In most cases, it would be because of the watches that you add while debugging. Clear the watch statements that would result in recursive execution of same statements as in the code. Always keep the watches clean before debugging.

提交回复
热议问题