© 2026 Hashnode
This article covers concepts that often look small in syntax but have major impact on how Java handles memory, objects, collections, and execution flow. 1. Why Java Needs Wrapper Classes Primitive types (int, char, double, boolean, etc.) are not obje...

1. What Are Nested Classes? A nested class is a class declared within another class. They are categorized into two types based on where they are declared. A nested class declared as a member of another class is called a member class, and a nested cla...

¿Alcance o entorno? No es lo mismo Si alguna vez te pasó que entendiste "más o menos" qué es el scope, o que usaste static porque “así funcionaba”, pero no sabías por qué, este artículo es para vos. Vamos a desarmar todo ese lío entre alcance, entorn...

1. Static in Java The static keyword in Java is used to indicate that a member (variable, method, or block) belongs to the class rather than an instance of the class. This means static members are shared across all objects of the class and can be acc...
