The G1 garbage collector, despite its advantages, is currently not good at handling bigger objects, called Humongous. Learn how to diagnose and fix the problem.
Want to learn more about the composite design pattern in Java? Take a look at this tutorial to learn how to implement this design pattern in your project.
Use an API to scan or look up a barcode. Supported barcode types include AZTEC, CODABAR, CODE_39, CODE_93, CODE_128, DATA_MATRIX, EAN_8, EAN_13, ITF, MAXICODE, PDF_417, QR_CODE, RSS_14, RSS_EXPANDED, UPC_A, UPC_E, All_1D, UPC_EAN_EXTENSION, MSI, PLESSEY, and IMB.
The Visitor design pattern lets us separate algorithms from the objects on which they operate. See how to implement it to follow the open/closed principle.
Candidate JEP 390 ("Warnings for Value-Based Classes&") was announced this past week by Mark Reinhold on the OpenJDK jdk-dev mailing list. This is a JDK Enhan...
Observer Pattern maintains a one-to-many dependency between a Subject and its dependents so that when the state of the Subject changes, dependents get notified.