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 调试工具在调试时无法进入 put mentod。
我附上了eclipse的源代码。当我将鼠标放在put方法上时,按下F3键,它可以转到TreeMap put方法源代码。我正在运行 Eclipse SDK 版本:3.2.2