摘要:
HashMap是一种散列表,通过数组加链表的方式实现。在JDK1.8版本后新增加了红黑树结构来提高效率。 HashMap HashMap是Java的Map接口的一种基础哈希表实现。它提供了Map的所有操作,并且支持以null为key或value。(除了是非同步的以及支持null以外,HashMap与 阅读全文
摘要:
猜一下下面代码的结果,是true true true 还是false false false?
Integer a = 10;
Integer b = 10;
System.out.println(a.equals(b));
a = 100;
b = 100;
System.out.println(a.equals(b));
a = 1000;
b = 1000;
System.out.println(a.equals(b)); 阅读全文
摘要:
Suppose that you are given the following simple database table called Employee that has 2 columns named Employee ID and Salary: Write a SQL query to g 阅读全文