我正在使用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类。
图片如下:
google stepFilter vscode并使用它。