Bruce Wellsblog.phpfui.com·Nov 20, 2024Implementing Active Records in PHP - Part 2In our last episode, I wrote a class I call DataObject. It will be the base class for my Active Record class since it has the basics of what is required in an Active Record class. A DataObject is basically a OO wrapper around an array, but an Active ...DiscussPHP
gayatri kumargeekee.hashnode.dev·Nov 18, 2024Shape Shifters: Understanding Polymorphism in JavaScript!Imagine a world where beings can take on multiple forms, like a shape shifter that can change its appearance but still retain its core identity. In JavaScript, polymorphism allows objects to behave similarly—taking on different forms (methods) while ...Saanvi Kumar and 1 other are discussing this2 people are discussing thisDiscuss·30 likesWeb Developmentjs
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
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
TechEazy Consultingblog.techeazyconsulting.com·Nov 16, 2024🚗 Understanding Classes & Objects in Java: A Drive Through the Basics 🚗Programming can sometimes feel abstract, but with the right analogy, it all clicks! One of the most fundamental concepts in Java is classes and objects, and here’s a relatable way to think about it: cars. 🛠 What’s a Class? Imagine a class as a blue...DiscussJava Interview Focused SeriesJava Programming
Mohammed Shakeelmaster-java.hashnode.dev·Nov 15, 2024Object-Oriented Programming (OOP) in JavaObject-Oriented Programming (OOP) is a programming paradigm centered around the concept of "objects," which represent real-world entities and data. Java, as a fully object-oriented language, leverages OOP principles to help developers build modular, ...DiscussJava
Rishav Kapilrishavkapil.hashnode.dev·Nov 8, 2024Understanding Constructors in C++: A Complete Guide for BeginnersIntroduction In C++, constructors are special functions that allow for efficient and controlled initialization of objects. They provide a way to assign initial values when an object is created, making them a crucial part of object-oriented programmin...Discuss·1 likeC++
kotesh_Mudilacodesh.hashnode.dev·Nov 7, 2024JavaScript Functions: Regular vs Constructor Functions Explained1. Purpose Function: A regular function is used to define reusable blocks of code, perform specific tasks, or calculate values. It’s called simply by its name. Constructor Function: A constructor function is intended to create instances of objects ...DiscussOOPS
Subhamcodexam.hashnode.dev·Nov 4, 2024OOPS in JAVA - Ultimate🔥Connect: https://www.subham.online 🔥Repo: https://github.com/Subham-Maity/Object-Oriented-Programming-For-Beginners 🔥GitHub: https://github.com/Subham-Maity 🔥Twitter: https://twitter.com/TheSubhamMaity 🔥LinkedIn: https://www.linkedin.com/in/sub...DiscussJavaScript
Archana Prustyarchana77.hashnode.dev·Oct 24, 2024Day 34 Guide: Mastering Object-Oriented Programming in PythonIntroduction : Welcome back to my Python journey! Yesterday, I laid the foundation with MongoDB database in python. Today, I dove into OOPs concept in python, Let's explore what I learned! Python's Object Oriented Programming System (OOPs) What is Cl...Discuss2Articles1Week