Arnab Bhowmikblog.thearnab.tech·Nov 19, 20241.2 Objects , Classes , Data Abstraction , Encapsulation & InheritanceObject-Oriented Programming Object-oriented programming (OOP) is a way to organize and conceptualize a program as a set of interacting objects. The programmer defines the types of objects that will exist. The programmer creates object instances as...DiscussOOPM SprintObject Oriented Programming
gayatri kumargeekee.hashnode.dev·Nov 17, 2024Inheritance in JavaScript: Extending Your Classes!Imagine your family tree. You inherit traits from your parents, like your last name or eye color, and you may pass those traits down to your children. In JavaScript, inheritance works the same way: a parent class passes down properties and methods to...Saanvi Kumar and 1 other are discussing this2 people are discussing thisDiscuss·30 likesWeb Developmentinheritance
Mohammed Shakeelmaster-java.hashnode.dev·Nov 15, 2024Inheritance and Types of Inheritance in JavaInheritance is one of the core concepts of Object-Oriented Programming (OOP), and Java, being an object-oriented language, fully supports inheritance. Inheritance allows a class to inherit properties (fields) and methods from another class, promoting...DiscussJava
Kristiadhykristiadhy.hashnode.dev·Oct 30, 2024OOP : InheritenceInheritence adalah sebuah mekanisme di mana suatu kelas dapat mewarisi sifat dari kelas lainnya. Inheritence memungkinkan pembuatan kelas baru yang disebut sebagai kelas turunan (derived class/subclass/child class). Kelas yang menjadi induk dari ke...Discuss·31 readsPemrograman Berorientasi Objekinheritance
Sri Siddhardha Kurrasid-kurra.hashnode.dev·Oct 23, 2024Building Resilient Software: A Deep Dive into OOP Principles, SOLID Design, and BeyondIn today's rapidly evolving digital landscape, where applications grow increasingly complex and data-intensive, the importance of solid software architecture principles cannot be overstated. As a software developer who has witnessed the transformatio...DiscussSystem Design
Shubham Khanshubhamkhan.hashnode.dev·Oct 13, 2024Understanding the Core Concepts of Object-Oriented Programming in JavaObject-Oriented Programming (OOP) is a fundamental concept in modern software development. OOP allows you to create programs that are more modular, reusable, and scalable. In this article, we will explore the four main pillars of OOP: Encapsulation, ...DiscussSystem DesignJava
Akash Dasakashdas7781.hashnode.dev·Oct 7, 2024Extends vs Implements in Java: A Comprehensive GuideHave you ever thought about the difference between the extends keyword and the implements keyword? Have you noticed where these keywords are used? Now, don’t just say, “In Java, of course!” Just kidding! Obviously, we use these keywords in Java, but ...Discuss·27 readsJava
Tejas Moretejasmore.hashnode.dev·Oct 6, 2024OOPs In PythonWhat is OOPs? OOPs simply means Object Oriented Programming. It is a Fundamental Concept in Programming Languages like Python, Java ,JavaScript, C , C++ etc. Definition : Object Oriented Programming (oops) concept is a technique/pattern that uses Obj...Discuss·1 likeObject Oriented Programming
Kandadi Manasakandadimanasa.hashnode.dev·Oct 2, 2024InheritanceInheritance is the mechanism by which one class acquires the properties and features of another class. The class that inherits the properties is called a sub-class (child class), while the class from which the properties are inherited is called a sup...Discussinheritance
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