Francesco Tusathinkobjectoriented.hashnode.dev·Nov 18, 2023A Brief Overview of Generalisation and Inheritance in C#Introduction When discussing the concepts of Class and Object in a previous article, we mentioned that objects of different classes can be interconnected through relationships. In object-oriented design, relationships can extend beyond objects and al...Discuss·85 readsinheritance
Victoria Burabari Poromonburah.hashnode.dev·Nov 6, 2023What Is Object-Oriented Programming In PythonPython is a versatile programming language that enables you to solve problems through procedural and object-oriented programming (OOP) paradigms. This tutorial will teach you the following: What OOP means Its fundamental concepts The various metho...Discuss·62 readsPython SeriesPython
valentine Gatwirigatwirival.hashnode.dev·Oct 23, 2023Understanding Java ClassesIn Java, classes are fundamental components of the object-oriented programming paradigm. They serve as blueprints for creating objects, which are instances of a class. In this article, I'll provide an overview of Java classes, including their structu...DiscussJava
Elucian MoiseforProgramming Languagessagecode.hashnode.dev·Oct 22, 2023Python OOPHere is an explanation of OOP, Python's multi-paradigm nature and OOP in Python: OOP stands for Object Oriented Programming. It is a programming paradigm that organizes software design around data (objects) rather than functions and logic. Some key c...DiscussPython Syntaxclasses
Francesco Tusathinkobjectoriented.hashnode.dev·Oct 13, 2023Overview of Objects and ClassesIn the previous articles of the series, we created various programs that manipulate data using variables of primitive data types and strings. We also learned about arrays, which allow organising and accessing multiple values of the same type using nu...Discuss·129 readsObject Oriented Programming
J B Sankarlalblog.sankarlal.in·Oct 5, 2023Java OOPs Simplified - Part 1What is Object Oriented Programming? It is a programming paradigm based on the concept of "objects". (So what is meant by a Programming paradigm? These are nothing but different ways or styles in which a given program or programming language can be o...Discuss·28 readsJava
Ganesh Jaiwalblog.ganeshjaiwal.dev·Oct 1, 2023Javascript Classes: A Comprehensive GuideIn the ever-evolving landscape of web development, JavaScript remains an indispensable language. Its versatility and dynamism empower developers to create interactive and user-friendly web applications. One fundamental concept that plays a pivotal ro...DiscussJavaScript - Basics to Advancejs
Mikeydraken.hashnode.dev·Sep 25, 2023Classes vs Interfaces in TypeScript - What's the Difference?Classes and interfaces are fundamental building blocks in TypeScript. While they have some similarities, they serve different purposes. This post explains the key differences between classes and interfaces in TypeScript with examples. Why Classes and...Discussclasses
Usman Akinyemiuniqueusman.hashnode.dev·Sep 20, 2023"Understanding basic Programming concept: Types, Data Types, Data Item, Classes, Objects, Method, ADTs, and Data Structures Explained."In the world of programming, several fundamental concepts are crucial to understand. Types, data types, ADT, data items, class methods and Objects are often used interchangeably, but they have distinct meanings and roles. In this blog post, we'll div...Discuss·2 likesProgramming basics
Andrew Dassandrewdass.hashnode.dev·Sep 15, 2023How to Make and Use Classes in PythonOverview This article will explain how to make classes in Python, the advantages of using them and define other terminology related to classes. Materials Computer Python Terminal or IDE Making a Class To initialize a class in Python, write "clas...Discuss·39 readsPython