Tech Using Builder in Java to Efficiently Create Safe Objects IntroductionAs noted in books like Effective Java (3rd Edition), when designing a class with many parameters, it's a goo... 2024.11.07 Tech
Tech How to Use Java’s Validation Methods and a Comparison of Major Libraries IntroductionProper verification of arguments and object states is essential to ensure the reliability of a program.To pr... 2024.09.16 Tech
Tech How to Split a String in Java and Important Considerations Basic Usage of the split MethodIn Java, you can split a string using the split method.The following example demonstrates... 2024.09.09 Tech
Tech Using ArrayList Capacity to Improve Performance IntroductionWhen creating a list in Java, you often see instances created like this: new ArrayList<>().List<String> list... 2024.09.02 Tech
Tech The Optimal Solution for Zero Padding and Space Padding in Java IntroductionIn this article, I will introduce several methods for padding strings with zeros or spaces in Java, along wi... 2024.08.24 Tech
Tech Set Up a Java Formatter in Visual Studio Code This article explains how to set up a Java formatter in Visual Studio Code based on Google Java Style.PrerequisitesThe e... 2024.08.18 Tech