Shubham Gordeshubhamgorde19.hashnode.dev·6 hours agoJava t2So in java, public class Main { public static void main(String[] args) { // entrypoint } } this main method is an your entrypoint so basically you can declare variables inside Let’s start learning datatypes of java There are two type...Discussjava coding masteryjava, java8, programming, code, coding, beginner, stream api, api,
Shubham Gordeshubhamgorde19.hashnode.dev·11 hours agoJava t1Today I am going to show to java basic syntax and how it works public class Main { public static void main(String[] args) { System.out.println("Hello World"); } } So this is a basic syntax of java where the first world is public mea...Discussjava coding masteryJava
Mohit Upadhyaymohit5upadhyay.hashnode.dev·Sep 13, 2024Introduction to Packages and Modules in Java ( Java 9+ )On Day 14, the focus is on understanding two key concepts in Java: Packages and Modules. These concepts are fundamental to organizing large-scale Java applications, promoting reusability, and controlling the visibility of classes and interfaces acros...Discuss·10 likesDecode Java with MohitJava
Mohit Upadhyaymohit5upadhyay.hashnode.dev·Sep 13, 2024Working with Inner Classes in JavaOn Day 13, we'll explore a more advanced and interesting concept in Java: Inner Classes. Inner classes allow us to define classes inside other classes, adding flexibility to our object-oriented design. In this session, you'll learn what inner classes...Discuss·10 likesDecode Java with MohitJava
Akash Dasakashdas7781.hashnode.dev·Sep 13, 2024Mastering Arrays in Java : The Key to Efficient Data Management .Why Array ? Before understanding what an array is, let’s look at the problems we face in data management. When you first learn programming, you often store data using individual variables of primitive types like int, float, char, etc. But what happen...Discussarrays
Shivam tiwarishivam85.hashnode.dev·Sep 13, 2024Building Real-World Applications Using Java: A Guide for Aspiring DevelopersJava has remained one of the most popular programming languages for building robust, scalable, and efficient applications. With its versatility and powerful ecosystem, Java is widely used in enterprise applications, mobile apps, web development, and ...DiscussJava
Akash Dasakashdas7781.hashnode.dev·Sep 12, 2024Understanding Java Operators with Real-World Examples :Just like in life, in Java, the right operator at the right time makes all the difference. Operators in Java are one of the fundamental building blocks for any program. They allow us to perform various operations on variables and values, helping us ...DiscussJava
Mohit Upadhyaymohit5upadhyay.hashnode.dev·Sep 11, 2024Encapsulation & Access Modifiers in JavaOn Day 12, we will dive into the concept of Encapsulation, another core principle of Object-Oriented Programming (OOPs) in Java. Encapsulation focuses on binding the data (fields) and methods (functions) that manipulate the data within a class. Addit...Discuss·10 likesDecode Java with MohitJava
Akash Dasakashdas7781.hashnode.dev·Sep 11, 2024Introduction to Data Types, Variables, and Control Statements in Java :Java is one of the most popular programming languages, known for its simplicity and robustness. Whether you’re a beginner or an expert, understanding the fundamentals like data types, variables, and control statements is essential to writing efficien...DiscussJava
Mohit Upadhyaymohit5upadhyay.hashnode.dev·Sep 11, 2024Abstraction in JavaOn Day 11, we will explore Abstraction, one of the fundamental concepts of Object-Oriented Programming (OOPs) in Java. Abstraction allows us to focus on the essential qualities of an object, hiding unnecessary details. It simplifies complex reality b...Discuss·10 likesDecode Java with MohitJava