📅 My Learning Journey
Learning progress chronologically
Saturday, December 13, 2025 1 post
String.format() Handbook 1. Quick Summary String.format() is a static method that returns a formatted string using a specified format string and arguments. It is effectively the sprintf o...
Thursday, December 11, 2025 2 posts
Java Deque Handbook 1. Quick Summary Deque (pronounced "deck") stands for Double Ended Queue . It is a linear collection that supports element insertion and removal at both ends. Inter...
Java Stack Handbook 1. Quick Summary The Stack class represents a Last-In-First-Out (LIFO) stack of objects. It extends class Vector , which means it is synchronized (thread-safe) but gen...
Tuesday, December 09, 2025 2 posts
https://www.digitalocean.com/community/tutorials/java-array-contains-value
📅 Java Design Patterns: Memento
Java Design Patterns
Java Design Patterns: Memento 1. Quick Summary The Memento pattern is a behavioral design pattern that lets you save and restore the previous state of an object without revealing the details...