Srushtisrushti1200.hashnode.dev·Nov 18, 2024Unveiling the Magic of OOP: Journey from Procedural Beginnings to Modern MasteryLet’s start with when humans started programming… https://media.giphy.com/media/qOqEd8lOUH8bzVi4Ca/giphy.gif?cid=790b7611uy39cj4wu8t84xqf8d5zvidweqehv20p7nrhdeiv&ep=v1_gifs_search&rid=giphy.gif&ct=g Ohh no! That would be too long ago. But you can...DiscussGeneral Programming
Akash Dasakashdas7781.hashnode.dev·Oct 1, 2024OOPS... Not Just an Exclamation, But a Fundamental Java ConceptThe concept of Object-Oriented Programming (OOP) in Java is as fundamental as the word "oops" is when we make a mistake. OOPs refers to Object Oriented Programming System . This concept tells us to write and use our code effectively .Object-Oriented ...DiscussJava
Sabat Alimsabatali.hashnode.dev·Sep 28, 2024Problem Statement: Creating a Car Class in Java to Understand Object-Oriented Programming (OOP)New Problem Statement Question: Create a class named Car with two attributes: brand and year. Write a constructor that initializes these attributes using the this keyword. Create a method called showDetails() to print the car's brand and year of m...Discuss·30 readsJava OOPoop
Sridhar Ksridharblogs.hashnode.dev·Jun 16, 2024Encapsulation in Object oriented programmingIntroduction to Encapsulation Encapsulation is one of the main pillars of object oriented programming. It is a process of hiding a data member by declaring it as a private data member thereby enhancing its security. Private data members can only be a...Discuss·4 likes·167 readsdata abstraction
Ronil Rodriguesronilrodrigues.hashnode.dev·Sep 21, 2023Understanding Objects and Classes in JavaUnderstanding Objects and Classes in Java Java, a versatile and powerful programming language, is built on the principles of Object-Oriented Programming (OOP). At the core of OOP lie "objects" and "classes". This blog post will delve into the fundame...Discussjava oops concepts
Mayank Bohramayankblogs.hashnode.dev·Aug 17, 2023Java Classes & Objects: Unleashing the Essence of OOPGreetings, Java enthusiasts! Welcome back to another enlightening chapter of our Java programming series. In our previous articles, we've ventured into the realms of Java Strings and Array Manipulation. If you've missed any of those articles, now's t...Discuss·2 likesJava ProgrammingJava
Mayank Bohramayankblogs.hashnode.dev·Aug 16, 2023Java OOPs: Mastering Object-Oriented ProgrammingGreetings, Java aficionados! Welcome back to another enlightening chapter of our Java programming series. We've traversed through the fascinating realms of Java Strings, Classes, and Objects, enhancing our programming prowess. If you've missed any of...Discuss·30 readsJava ProgrammingJava
Mayank Bohramayankblogs.hashnode.dev·Jul 20, 2023Java Constructors: Building Objects with Precision and FlexibilityWelcome back, dear readers, to our exciting Java programming series! In this article, we'll dive into constructors—a vital aspect of Java classes that allows us to create objects with precision and flexibility. Let's explore the world of Java constru...Discuss·1 likeJava ProgrammingWeMakeDevs
Rahul Shashidhartopg.hashnode.dev·Apr 6, 2023Multiple Inheritance and Why it is not Possible in JavaIn the world of Object-Oriented Programming, Inheritance is one of the most critical concepts. Inheritance is a mechanism that allows the reuse of code and a way to establish a relationship between different classes. There are different types of inhe...Discuss·75 reads@wemakedev
Visweswara raosoftdevelopment.hashnode.dev·Feb 19, 2023Object-Oriented Programming(oops)Object-Oriented Programming (OOP) is a programming paradigm that emphasizes the use of objects and classes to model real-world concepts and behaviours. OOP provides several key features that make it a popular choice for software development, includin...Discuss·44 readsjava oops concepts