#oop
Read more stories on Hashnode
Articles with this tag
This article covers polymorphism in Java, an important OOP principle. · The word Polymorphism is a combination of two Greek words: Poly which means many...
This article covers an important OOP principle: inheritance. · Inheritance is an important OOP principle because it allows you to create a new class from...
This article covers an important OOP principle: encapsulation. · In a previous article, we talked about how in Java , it is advisable to have the member...
This article covers the role of methods in Java · There are 2 types of methods: Static methods Non-static methods (Dynamic) In this article, we will...
In this article, we lay the foundations for covering object-oriented programming by first going through classes, objects, access modifiers and fields. ·...