Browsing Tag
oop
16 posts
Class, Object, Property and Methods in C#
Originally published at https://allcoderthings.com/en/article/csharp-class-object-property-method In Object-Oriented Programming (OOP), a class is a template that gathers the data (properties)…
Inheritance vs Abstraction in Java: Why Abstract Classes Exist?
Encapsulation, polymorphism, inheritance, and abstraction form the foundation of object-oriented programming in Java. Encapsulation is usually easy to…
Separating Class Responsibilities with Clprolf
Designing clean, well-structured classes is a central challenge in object-oriented programming. Clprolf addresses this by introducing declensions —…
Hello Folks. I have written my first post on dev to, about Scope Functions in Kotlin. Feel free to give it a read and drop a review or suggestion. Also, would love to know your favourite scope function, or your favourite feature of Kotlin. Happy reading!
Scope Functions in Kotlin Prithviraj Kapil ・ May 30 #kotlin #oop #tutorial #programming
Basic OOP – Part 01
Everything in Python is Object-Oriented Example: a = 2 # 'a' is an object of integer type Similarly:…
On inheritance and subtyping
Java is the first language I learned in my career. Its structure is foundational in my early years…
Is Clean Code really practical?
Small functions are easy to understand? What if we have too many of them? Meaningful function names? Is…
Unlearning SOLID: My Path to More Nuanced Code Evaluation
Introduction If you are a software engineer, you have probably heard about the SOLID principles. They are a…
Introduction To OOP: Objects
This article was first published on konadu.dev(Introduction To OOP: Objects) Undoubtedly, two of the most known programming paradigms…
OOP via FP : functional nature of classes and objects
Topic for today Today I would like to tell you, why such OOP concepts as classes and objects…