Here is the test code :
import java.util.HashMap;
import java.util.Map;
public class Tester {
public static void main(String[] args) {
Map<String, Integer> map = new HashMap<String, Integer>();
map.put("ABC", 1); //breakpoint here
}
}
Normally in debug mode, when mouse is hovering above certain variable, the value is displayed. But it seems most of the variables in HashMap
does not display its value when mouse hovers.
In the put
method of HashMap
, most of the members of map
get evaluation errors:
Why are there so many <error(s)_during_the_evaluation>
? what caused these errors?