π My Learning Journey
Learning progress chronologically
Thursday, December 18, 2025 5 posts
π Tricks
Java
β Java Memory Management - Explained JVM Structure with Examples β β 30 Must-Know Java Tips and Tricks to Boost Your Coding Skills Java Best Practices That Every Java Developer Should Know i...
π Atomicity
Java
Atomicity in Java Atomicity in Java refers to the property of an operation being performed as a single, indivisible step, ensuring that no other thread can observe the operation in an intermedi...
Java Implementation Classes of List In Java, the List interface is part of the java.util package and provides an ordered collection that allows duplicate elements. To use a List...
In Java, the List interface (part of java.util ) represents an ordered collection that allows duplicate elements and provides positional access via indexes. Hereβs a breakdown of the ...
Hereβs a concise summary of Javaβs builtβin logging API ( java.util.logging ), which is part of the standard JDK and requires no external libraries. java.util.logging Overview The java.ut...