VKVivan Kumarinvivansblog.hashnode.dev·Jul 16, 2024 · 2 min read"public static void main(String[] args)"When I first encountered the main method, I remember staring at this block of code, feeling overwhelmed. The words public, static, and void were alien to me, and the structure felt rigid compared to the fluid nature of scripting languages. What did t...00
VKVivan Kumarinvivansblog.hashnode.dev·Jul 16, 2024 · 5 min read"Java's Object Class: The Bedrock of OOP"In Java, the Object class is the cornerstone of Object Oriented Programming (OOP). It offers key methods that facilitate key OOP principles such as inheritance, polymorphism, and encapsulation. This blog will take you on a deep dive into the Object c...00
VKVivan Kumarinvivansblog.hashnode.dev·Jul 13, 2024 · 5 min read"Mastering IO Streams in Java: A Comprehensive Guide"Welcome to the first part of our series on Java IO Streams! In this series, we will explore the various types of IO streams in Java. INTRODUCTION An I/O stream in Java is used to perform input and output operations. They can help in reading/writing f...00