Sahil Khansahilkhan17.hashnode.dev·Oct 19, 2024Java Project For BeginnersOverview In this blog post, we'll walk through creating a straightforward to-do list application using Java. The Simple To-Do List application allows users to add, view, update and delete tasks from a list. This project will help you learn essential ...DiscussJava
Sanjeet Singhtechnologs.hashnode.dev·Oct 18, 2024Java Messaging Service (JMS): Asynchronous CommunicationIntroduction Java Messaging Service (JMS) is an API for messaging systems that provides a standardised way for Java applications to create, send, receive, and read messages. It enables asynchronous communication between applications, allowing them to...Discussjms
Mohit Upadhyaymohit5upadhyay.hashnode.dev·Oct 2, 2024Annotations in JavaOn Day 21, the focus is on Annotations in Java. Annotations are a form of metadata that provide data about a program but do not have direct influence on the program's logic. They are widely used to provide additional information for compilers, develo...Discuss·20 likesDecode Java with MohitJava
Dilip PatelforDilip Patel's Java blogjavamastery.hashnode.dev·Oct 3, 2024Java TokensJava tokens are the smallest elements of a Java program that are meaningful to the compiler. They include keywords, identifiers, literals, operators, and separators. During compilation, Java code is broken down into these tokens through a process cal...DiscussJava BasicsJava
Dilip PatelforDilip Patel's Java blogjavamastery.hashnode.dev·Oct 3, 2024Java PackagesJava packages are essential for organizing and managing code in Java projects. They group related classes and interfaces, helping to avoid name conflicts, control access, and create a hierarchical structure for easier code management. Packages also e...DiscussJava BasicsJava
Dilip PatelforDilip Patel's Java blogjavamastery.hashnode.dev·Oct 3, 2024Java CommentsIn Java, comments are used for code readability and documentation, ignored by the compiler. There are three types: single-line (//), multi-line (/* ... */), and documentation comments (/** ... */). Documentation comments are processed by Javadoc to c...Discuss·29 readsJava BasicsJava
Dilip PatelforDilip Patel's Java blogjavamastery.hashnode.dev·Oct 1, 2024Java Print Method: System.out.printlnSystem.out.println in Java is a method used to print output to the console. It involves three main components: the System class, the out field, and the println method. The System class provides standard input, output, and error streams, among other u...Discuss·31 readsJava BasicsJava
Dilip PatelforDilip Patel's Java blogjavamastery.hashnode.dev·Oct 1, 2024Java main() MethodThe main() method in Java is the entry point for any standalone application, called by the JVM to start program execution. It must be public, static, and void, with a String[] parameter for command-line arguments. The method's syntax is strict, but s...Discuss·44 readsJava BasicsJava
Mohit Upadhyaymohit5upadhyay.hashnode.dev·Sep 27, 2024Working with Java 8 FeaturesOn Day 20, we will focus on the major enhancements introduced in Java 8. This version of Java introduced several powerful features aimed at functional programming, making the code more concise, readable, and optimized for parallel processing. Key con...Discuss·10 likesDecode Java with MohitJava
Dilip PatelforDilip Patel's Java blogjavamastery.hashnode.dev·Sep 27, 2024Java ConstructorsConstructors in Java are special methods used to initialize objects. They are called when an instance of a class is created. Constructors have the same name as the class and do not have a return type. Rules to Create Constructors The constructor nam...DiscussJava