Saturday, December 13, 2025 1 post

✍️ ningnong
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...
Read more →

Thursday, December 11, 2025 2 posts

✍️ ningnong
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...
Read more →
✍️ ningnong
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...
Read more →

Tuesday, December 09, 2025 2 posts

✍️ ningnong
​ https://www.digitalocean.com/community/tutorials/java-array-contains-value ​
Read more →

📅 Java Design Patterns: Memento

Java Design Patterns
✍️ ningnong
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...
Read more →