© 2022 Hashnode
#object-oriented-programming
Hello Devs, hope you all are doing great, now as i have got your attention, not taking much of your time, lets jump on today's topic, its the operator NEW, we all know what is does with classes, and constructor functions, it basically retur…
Introducción Sabemos que el paradigma de programación orientada a objetos (POO de ahora en adelante) se centra en objetos, pero antes de que existiera, se usaba lo que llamamos programación procedimen…
Introduction In this article, I will be taking you through how you can understand the basics of object-oriented programming as a beginner, this article is divided into two sections for easy understand…
Introduction This is a comprehensive tutorial for Python beginners on object-oriented programming, the objective of this tutorial is to give you an insight to object-oriented programming and help you …
Recap In the previous articles, we discussed what Object-Oriented Programming is, objects, classes and respective constructors as well as how to access members of a class. We also saw examples of thes…
This will be the third article in my series of articles on Memory Management in Java, I will be talking about how objects and methods are allocated space in Java. For terminology, please refer to my previous articles on this Java Memory Ma…
TL;DR: Respect the MAPPER. Make fungible what is Fungible in real-world and vice-versa. Problems Bijection Fault Over Design Solutions Identify fungible elements on your domains Model them as i…
TL;DR: Make cohesive primitive objects travel together Problems Bad Cohesion Duplicated Code Validation Complexity Readability Maintainability Solutions Extract Class Find small objects Co…
The object-Oriented Paradigm is a style of programming in which everything is considered to be an object. An object here is an instance of a class that holds data and methods to mutate/modify the data held by the object and hence, the objec…
How was your life when you started programming? Was it good? Or was it bad? For me, it was both. Good because it felt like a nice vibe to be a programmer, and also kind of bad because I had no idea wh…