2
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中放方法,所以我添加兩個斷點的線(線a,線b)。調試時 Eclipse的調試工具無法步入放mentod。Eclipse的調試不能踏入(或F5)
我已附加源代碼蝕。當我把鼠標放在放的方法,按F3鍵,它可以去TreeMap把方法的源代碼。我運行Eclipse SDK版本:3.2.2
你檢查鍵盤快捷方式? – alfonx