关于断点调试的问题
大家好
新手小白问个问题
我在Eclipse 设置了一个断点,然后运行的 Debug As->Java Application
可是断点没有起作用,直接运行了结果
是怎么回事呢?
public class TestDebu { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub String str="test"; //在这设置的断点 str+="world"; System.out.println(str); }}