Java | 2020-04-15 Java TreeSet The TreeSet in Java is a subclass of Set. The TreeSet collection is used to sort ...
Java | 2020-04-09 Java CompletableFuture In modern software development, system functions are becoming more and more complex, and the method ...
Java | 2020-04-05 Java final and static keyword Final keywordAccording to the context of the program, the Java keyword final has the meaning of “thi ...
Java | 2020-03-29 Java Static code block Static code block: declared with staitc, executed when the jvm loads the class, only onceConstructin ...
Java | 2020-03-13 Java CountDownLatch The JDK concurrency package provides several very useful tool classes. These tool classes provide us ...
Java | 2020-02-21 Java TreeMap TreeMapIn the Map collection framework, in addition to HashMap, TreeMap is also one of the collectio ...
Java | 2020-02-10 Java Bit Operations All data is stored in binary form in the computer. Bit operations are actually operations on the bin ...
Java | 2020-02-05 Java PriorityQueue PriorityQueueThe PriorityQueue class was introduced in Java 1.5. PriorityQueue is an unbounded queue ...
Java | 2019-11-18 Java 8 Optional Java 8 introduced Optional class to avoid NullPointerException. Basically Optional class is a contai ...
Java | 2019-11-15 How to deserialize Json content with unknown property when using Jackson When using Jackson to deserialize a Json string, if the Java object does’t include all the fields in ...