Eclipse调试无法进入(或F5)

时间:2012-10-17 07:20:51

标签: eclipse debugging step-into

package com.test;

import java.util.TreeMap;

public class Main {
    public static void main(String[] args) throws Exception {
        TreeMap<String, String> tree = new TreeMap<String, String>();
        tree.put("1", "1");//line a
        tree.put("1", "1");//line b
        System.out.println(tree.size());
    }
}

我想调试 TreeMap put 方法,所以我为这些行添加两个断点(第a行,第b行)。 调试时,Eclipse调试工具无法进入调试阶段。

我附上了eclipse的源代码。当我把鼠标放在 put 方法上时,按 F3 键,它可以转到 TreeMap put 方法源代码。我正在运行Eclipse SDK Version:3.2.2

1 个答案:

答案 0 :(得分:0)