摘要:
public static void main(String[] args) { Map map = new HashMap(); map.put("1", "value1"); map.put("2", "value2"); map.put("3", "value3"); //第一种:普遍使用,二次取值 System.out.println("通过Map.ke... 阅读全文
摘要:
如果仅仅需要知道是否有交集 false: 有交集 true: 没有交集 阅读全文