Data Types in Java

In Java, primitive data types are the most basic building blocks of data — they’re not objects, and they store actual values (not references). There are 8 primitive data types in Java, and each ha...
0 Read More

Singleton Pattern-<Creational>

Singleton Pattern-<Creational>
01) What? 1.1) Real World ScenarioImagine a scenario where having multiple copies of something could cause problems. Think about a database connection, or maybe a printer. If everyone had the...
0 Read More

Refactoring 027 - Remove Getters

Refactoring 027 - Remove Getters
Unleash object behavior beyond data access TL;DR: Remove or replace getters with behavior-rich methods that perform operations instead of exposing internal state. Problems Addressed 😔 An...
0 Read More

Java Signals and Effects

When developers talk about reactivity in either Java or JavaScript, from the surface level, it appears to be the same kind of conversation. The first place that the conversation may typically wander ...
0 Read More

11.9 Sistema de assinaturas

📘 Resumo do Sistema de Assinaturas (Capítulo 11.9) Esse tópico mostra como modelar um sistema de assinaturas mensais usando Java 8, representando o tempo de vigência da assinatura e o cálculo d...
0 Read More