basic questions
Map<String, Integer> map = new HashMap<String, Integer>();
map.put("1", 100);
if (map.containsKey(1)) {
System.out.println(map.get(1));
}
if (map.containsKey("1")) {
System.out.println("this one:" + map.get("1"));
}
Integer sx = null;
if (sx == 3) {
System.out.println("wrong");
}