如何关闭 - VS CODE打开它在java调试期间遇到的所有内部类,例如printstream class,String class

问题描述 投票:0回答:1

我正在使用VS CODE来学习java。在调试时,它会打开它在代码中遇到的所有内部类。

例如:-

class test{
    public static void main(String[] args) {
        int x= 7;
        int y = 8;
        System.out.println("Hello World"); // opens prints stream class and executes each line per click of this print stream class
        int z = x+y;
    }
}

我想要的 - 当调试器击中System.out.println("hello world");时,它打印hello world并继续前进而不是打开printstream类。

图片如下:

enter image description here

enter image description here

visual-studio-code vscode-settings vscode-debugger
1个回答
0
投票

google stepFilter vscode并使用它。

© www.soinside.com 2019 - 2024. All rights reserved.