Mukul kumarmuku.hashnode.dev·Sep 24, 2024Why 1==1 is true but 128==128 is false in JavaUnderstanding Integer Caching in Java: Why 128 == 128 Can Be False If you’ve ever worked with Java, you might expect that comparing two equal numbers with == would always return true. But have you ever encountered a scenario where 128 == 128 results ...Discuss·11 likes·43 readsIntegerCaching
Rohit Gawanderohit253.hashnode.dev·Sep 15, 2024Exploring Associations in Java: One-to-One, One-to-Many, Many-to-One, and Many-to-Many RelationshipsUnderstanding Has-A Relationships in Java: Associations and Dependency Injection Introduction: In Java, relationships between classes and objects play a crucial role in making your code modular, reusable, and easier to maintain. One of the key concep...DiscussJava
Sandhi Jain sandhijain.hashnode.dev·Aug 14, 2024Multithreading in JavaTo create a new thread in Java, there are two ways: Extend the thread class Implement the Runnable Interface Extending the thread class This is the main class. Here, start() method is called to initiate new thread package com.basics; public cla...DiscussCore Java
Pradip Valapradiptechtalks.hashnode.dev·Aug 10, 2024Understanding JDK,JRE and JVMJDK The JDK is software development kit that provides the tools and libraries necessary to develop java applications, It includes the JRE, as well as development tools like the Java compiler(javac), java documentation tool(javadoc) and various utilit...DiscussJava
ANSHbitmanipulation.hashnode.dev·Aug 4, 2024Bit Manipulation: CORE CONCEPTSBit manipulation is a technique that involves directly manipulating the individual bits of a number. It's often used to optimize algorithms and solve problems efficiently. BITWISE OPERATORS Observations of XOR : a ^ 1 = ā (compliment of a) a ^ 0...Discuss·10 likesbit-manipulation
Sanjeet Singhtechnologs.hashnode.dev·Jul 30, 2024Why Java Reigns Supreme in Big Data and IoTJava stands out as a powerful and adaptable programming language in the realm of Big Data and the Internet of Things (IoT). Its enduring popularity stems from several key strengths that perfectly align with the demands of processing massive datasets ...DiscussJava Programming
Aniket Dhaygudeaniket04blog.hashnode.dev·Jul 20, 2024Mastering Java: A Comprehensive Guide to Learning Java and Its Core ConceptsJava is one of the most popular programming languages in the world, known for its versatility, scalability, and robustness. Whether you're a beginner starting your programming journey or an experienced developer looking to expand your skill set, mast...Discuss·17 likesJavaScriptpretty easy , core concepts are really important 10
Umesh Mauryajavatechtales.hashnode.dev·Jul 16, 2024Journey to Java Mastery: Tips for Aspiring DevelopersThere are numerous programming languages available for programmers and developers today, including C, C++, and Python. Among these, Java stands out for its versatility, as it can be used to create customized applications that are both fast and lightw...DiscussCore javaJava
Umesh Mauryajavatechtales.hashnode.dev·Jul 15, 2024Introduction to Java: Why Java is Still Relevant in 2024Introduction Java, a programming language that first appeared over two decades ago, continues to stand tall in the ever-evolving tech landscape. But what makes Java so enduring? Why is it still a top choice for developers and enterprises in 2024? In ...Discuss·1 likeCore javaJava
Shubham Patilshubhampatil.hashnode.dev·Jul 10, 2024How Java is made a safe programming language.Java, developed by Sun Microsystems in the mid-1990s,Now its a product of Oracle has become one of the most popular programming languages in the world. Its success can be attributed to many factors, including its platform independence, robustness, an...Discuss·10 likes·72 readsJava