João Esperancinhajesperancinha.hashnode.dev·Jan 9, 2025When thinking about Java fields we use-site target in KotlinOne of the greatest strong points of Kotlin can also be its weakness. When we talk about data classes today, and in the same way java records, we tend to focus, at least many people I know do, on the complete elimination of the boilerplate code. Boil...Kotlin
Ashutosh Krishnablog.ashutoshkrris.in·Sep 29, 2024DTO vs Record in Java: Which Should You Use?In Java applications, we often need to transfer data between different layers of the application, or between services. For this purpose, we use Data Transfer Objects (DTOs). A DTO is a simple object designed to hold data, without any complex behavior...1 like·545 readsJava
Supratim Sarkarssarkar8.hashnode.dev·Apr 9, 2024Records in JavaRecords were first introduced in Java 14. What is Java Records? Records in Java are a concise way to define immutable classes. They focus on data storage and offer: Automatic boilerplate code: The compiler generates getters, equals, hashCode, and to...1 likeJava
Gideon Baturegideonbature.hashnode.dev·Feb 21, 2024Unveiling ResultNote: The Game Changer for Effortless Result ManagementIntroduction Our project helps teachers to be able to manage their students results: they can record the test and exams grade of each individual students per class, generate the over all result for each student in a class based on their individual re...10 likes·47 readsresult management system
Elucian MoiseforProgramming Languagessagecode.hashnode.dev·Nov 28, 2023Ada: RecordsRecord Type A record in Ada is a user-defined composite data type that groups variables of different types under a single name. Records allow you to define structures containing multiple related data items. Some key points about records in Ada: Reco...Ada LanguageADA
Chinedu Ihediohachinexboroja24.hashnode.dev·Nov 26, 2023Exploring the Power of Java Records: Simplifying Data Classes in JavaIntroduction Sometimes as a Java programmer, writing a whole bunch of repetitive and boilerplate codes for a class representing a distinct object can be quite exhausting and stressful. You may be looking at it like, why can’t I substitute these simil...10 likesJava