排序
The Difference Between `-able` and `-tor` in Java: My Visualization
The Difference Between `-able` and `-tor` in Java: My Visualization,When I first encountered Java interfaces like Iterable/Iterator and Comparable/Comparator, I was thoroughly conf...
¿Cómo usar Optional en Java?
¿Cómo usar Optional en Java?,La clase Optional fue introducida en Java desde la versión 8, esta clase es el equivalente a Maybe en otros lenguajes de programación. Básicamente...
Java for DSA Part 1
Java for DSA Part 1, Introduction to Java: Java is general purpose and powerful language. It is fundamentally an object oriented programming language. Java is platform independent(...
Custom Annotation
Custom Annotation, What is the Custom Annotation? An annotation is a form of metadata that provides additional information about a program. It can influence how the program is comp...
Как подружить котиков, слонов и китов: тестирование Spring-приложений с Testcontainers
Как подружить котиков, слонов и китов: тестирование Spring-приложений с Testcontainers ,Когда речь идет о тес...
How to Set Up Your Environment to Start Java Development
How to Set Up Your Environment to Start Java Development, Java Development (13 Part Series) 1 Getting Back to Java: A Journey Through One of the Most Versatile Languages 2 How to S...
¿Qué es un bloque static en Java?
¿Qué es un bloque static en Java?,Un bloque static en Java es un bloque de código que se ejecuta una sola vez cuando la clase es cargada por el ClassLoader, es decir, cuando se ...
Java 8+ Features : Practical Guide
Java 8+ Features : Practical Guide,Here’s a comprehensive set of practical exercises for all Java 8 features: 1. Lambda Expressions Write a program that filters and prints even nu...
Testing Spring Boot Applications: An Introduction to Unit and Integration Testing
Testing Spring Boot Applications: An Introduction to Unit and Integration Testing, Learn unit and integration testing for Spring Boot apps with JUnit, Mockito, and Spring Boot's te...
¿Para qué sirve el modificador static en Java?
¿Para qué sirve el modificador static en Java?,El modificador static en Java se utiliza para definir variables o métodos que pertenecen a la clase en sí misma, en lugar de a un...
Exploring “Handlers” in Programming: A Friendly Dive
Exploring 'Handlers' in Programming: A Friendly Dive,While studying GUI development with JavaFX, I came across the term 'event handler.' The word handler was somewhat familiar to m...
First Experience with Java Generics: Key Learnings and Struggles
First Experience with Java Generics: Key Learnings and Struggles,When creating classes or methods, we often deal with data of some kind. While the data types may vary, the logic re...