Visual studio code 如何关闭-VS代码,打开java调试期间遇到的所有内部类,如printstream类、String类

Visual studio code 如何关闭-VS代码,打开java调试期间遇到的所有内部类,如printstream类、String类,visual-studio-code,vscode-settings,vscode-debugger,Visual Studio Code,Vscode Settings,Vscode Debugger,我正在使用VS代码学习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 pr

我正在使用VS代码学习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类

图片如下:


谷歌stepFilter vscode并使用它

googlestepfilter vscode并使用它