Spinmatchspinmatch.hashnode.dev·Oct 21, 2024New Zealand’s Historic Victory: A First-Ever Women’s T20 World Cup TriumphIn a monumental moment for New Zealand cricket, the women’s team captured their first-ever ICC Women’s T20 World Cup title on October 20, 2024, with a thrilling 32-run victory over South Africa in Dubai. This triumph not only marks a major milestone ...sports
QazneticforQazneticqaznetic.hashnode.dev·Jul 13, 2024Penerapan Constants dan Final dalam Dart: Tips untuk Kode yang Lebih Stabil dan AmanDalam pemrograman, ada kalanya kita membutuhkan nilai yang tetap dan tidak berubah sepanjang runtime aplikasi. Dart menawarkan dua cara utama untuk mendeklarasikan variabel yang tidak dapat diubah: menggunakan const dan final. Pada artikel ini, kita ...Dart FundamentalsDart
Chetan Dattachetan77.hashnode.dev·May 13, 202409 Java - Classes (Part III)Pojo Class Stands for "Plani Old Java Object". Contains variables and its getter and setter methods. Class should be public. Public default constructor. No annotations should be used like @ Table, @ Entity, @ Id etc.. It hould not extend any cl...131 readsJavaJava
Nikhil Abhiman Jadhavtechnikio.hashnode.dev·Jan 9, 2024Mastering the "Final" Touch in Java1. Introduction: Greetings, Java enthusiasts! Today, let's unravel the power of the "final" keyword a versatile gem that adds precision and clarity to your Java code. Buckle up as we explore how this keyword, whether applied to variables, methods, o...1 liketechnikio
Preetika Prakashpreetikaprakash.hashnode.dev·Apr 22, 2023final variable - what is it ?Final variables are written in capital letters as per the standards. Final variables cannot be modified. Final variables don’t have any default value, without initializing and printing it will give an error. When used Inside the Method, final Vari...45 readsJava