This chapter is all about object-oriented programming in detail. This monumental paradigm changed the world of programming and has since become somewhat of a de facto approach in software design. We’ll next go through many of the concepts crucial to the object-oriented paradigm. During this chapter, we’ll present concepts related to OOP mostly using the Java language for clarity, not completely forsaking C# and Python, of course.
Procedural vs. Object-Oriented Paradigms
As mentioned in Chapter 2, there are currently ...