What is Object-Oriented Programming? A Beginner's Guide

CareerFoundry Blog contributor Liz Mowforth

You’ve probably come across the phrase “object-oriented programming” somewhere on the internet. You’ve heard it talked about in relation to languages like Ruby, Python, and definitely Java, but might have glazed over at the mention of subclasses and inheritance.

You may even have braved one of the many online tutorials on the subject (they all seem to involve some sort of car analogy). Either way, it’s definitely one of those web development buzzwords you should definitely know.

Believe it or not, object-oriented programming (OOP for short) is nowhere near as complicated as people might have you think, and actually exists to make the task of programming easier.

To better understand what it’s all about, first we need to go back to the fundamentals of computer programming (it’s not that bad, I swear!) By breaking it up and looking at what OOP does, what an object, class, and inheritance are, then we can understand this coding paradigm.

If you’ve got an idea of what object-oriented programming is all about and would like to skip ahead to a certain section, then simply use the clickable menu:

  1. What is Object-Oriented Programming?
  2. How does OOP differ from other paradigms?
  3. How does OOP tackle the problem?
  4. Okay, so what is an object?
  5. What is a class?
  6. What is inheritance?
  7. Next steps

1. What is Object-Oriented Programming?

As our CEO Martin explains in his guide to learning to code, at its core programming is about creatively solving a problem andas with nearly everything in lifethere are many different ways to achieve this goal.

Object-oriented programminglike procedural, functional, or logical programmingis just one of those many ways. These ways of solving the problem are called paradigms. These are essentially ways of thinking about code. A good paradigm constrains the coder somewhat, but in a good way.

So, how is OOP different from the others?

2. How does OOP differ from other paradigms?

Before object-oriented programming arrived on the scene, there were fewer ways of going about fixing coding challenges. Some of these paradigms held that the key to the programming challenge lay in how to write the logic that would process the data in a program.

Procedural programming, for instance, uses a list of step-by-step instructions to tell the computer what to do. This approach works well because it’s quite intuitive: if you want a computer to do something, you just provide step-by-step instructions on how to do it.

Solutions like procedural programming have their downsides, however: they’re quite often time consuming, because logic-bound code can’t be usefully packaged up for re-use, meaning software often becomes complex, hard to understand, and expensive to maintain.

The paradigm that object-oriented programming comes against most often these days is functional programming—so we’ve created a whole guide comparing FP to OOP for you.

Some programmers started to look for a new angle to solve the problemone which would make coding DRYer and more efficient.

3. How does OOP tackle the problem?

Object-oriented programming approaches the problem by reasoning that what we really care about is defining the data we want to manipulate rather than the logic required to manipulate it.

This isn’t as complicated as it sounds: it just means that in OOP all those step-by-step instructions are carried out using objects, rather than logic.

And sorting data in this way is a pretty good idea when you think about it: a huge part of good programming practice is writing code that’s readable and easy to change.

If you’re dealing with generic, self-contained units that will work with a wide range of data, you’re far more likely to stay organized, minimize development time, and decrease the risk of bugs.

4. Okay, so what is an object?

Objects are the tools that we use to make this approach work.

As the main building blocks of object-oriented programming, they house the information needed to make the data in our program useful.

A very basic example of an object would be a person. Our person probably has a name, age, and address: these are the properties of our person. Our person can probably do some things too, such as going for a run, or listening to some music, or eating a steak. These are our person’s methods. They allow our objects to do things, and (perhaps more importantly) allow us to manipulate its properties.

A slightly more complex (although perhaps more familiar) example comes from JavaScript, where every single component (including Functions, Strings, and Numbers) is considered to be an object.

This language is a little less straightforward than the others as it uses several different paradigms, but if you’d like to learn more how it works with OOP, check out our guide to JavaScript classes.

5. What is a class?

Let’s go back to our “person”. Say you wanted to create several people, all three with the same properties (name, age, address) and methods (eating a steak). We would need to be able to easily describe a “person” with all their basic properties and methods multiple times over in a concise and efficient way.

This is where Object-Oriented Programming’s classes come in: rather than writing out the concept of a “person” each time as you would using logic, we just create a class called “person” which acts as a blueprint for the properties and methods common to all people. So our “person” class imbues anyone in it with a name, age, and address, as well as the ability to go for a run, listen to music, and eat steak.

Each person created from our “person” class is known as an instance of that class and counts as an object within our “person” class. So think of a class as more like a concept (“person”), and an object as more the embodiment of that concept (“Riley”).

6. What is inheritance?

In object-oriented programming each class is designed and programmed to accomplish one, and only one, thing. This is incredibly important, as doing so makes it possible to define subclasses of objects that share some or all of the main class characteristics.

For instance, if we created our three instances of “person”let’s call them “Barack”, “Arnie”, and “Mr.T”they would all have the traits of a “person” but the “Arnie” subclass would have its own individual properties. He might, for instance, have some slightly more outlandish properties (fashion sense) and some more unusual methods (eating protein) than the other two.

This ability to hand down select properties and methods is known as inheritance and cuts to the heart of why OOP is so powerful: it not only speeds up program development, but also means that the defined subclass object is always valid (if the class works and is consistent, then the subclass will inherit its consistency). Nice!

7. Next steps

Object-oriented programming is just one of a handful of programming paradigms, each with their own strengths and weaknesses. Quite a few of the more popular programming languages even use a mixture of these paradigms to express themselves and interact with data.

Always remember that while a language built around object-oriented programming might be the right tool for one situation, another paradigm might work better in another. Take some time to understand the approach behind each of these paradigmsit will help you grasp the basic makeup of both the programs you use and the code you write.

If you’d like to read more about programming languages or about web development in general, then have a look at these articles:

What You Should Do Now

  1. Get a hands-on introduction to web development and build your first website from scratch with our free, self-paced web development short course.

  2. Take part in one of our FREE live online web development events with industry experts, and check out recent graduate Tanimara’s successful career-change story.

  3. Become a qualified web developer in just 5-10 months—complete with a job guarantee.

  4. This month, we’re offering Women in Tech Partial Scholarships—worth up to $1,500 off our career-change programs—to the first 80 women who apply 🚀 Book your application call today! 

What is CareerFoundry?

CareerFoundry is an online school for people looking to switch to a rewarding career in tech. Select a program, get paired with an expert mentor and tutor, and become a job-ready designer, developer, or analyst from scratch, or your money back.

Learn more about our programs
blog-footer-image