我正在为 hashmap 使用当前的详细格式化程序
key + "-" + value
当我调试代码时..
import java.util.HashMap;
public class Test1
{
public static void main(String[] args)
{
HashMap<String, Integer> wordcount = new HashMap<String, Integer>();
wordcount.put("foo", 1);
wordcount.put("bar", 1);
System.out.println("test"); // set a breakpoint here
}
}
Eclipse 在变量选项卡中说..
Detail formatter error:
key cannot be resolved to a variable
value cannot be resolved to a variable
实际上,当断点停止在 ... 时,我想查看 HashMap 的值,System.out.println
不仅仅是wordcount HashMap<K,V> (id=16)
,而是它的内容。