intro to oop

Overview

We'll introduce the concept of Object Oriented Programming (OOP)

Object-Oriented Programming (OOP)

An object-oriented approach to application development makes programs more intuitive to design, faster to develop, more amenable to modification, and easier to understand.Object-Oriented Programming with Objective-C, Apple Inc.

It's natural to wonder, "how can a string of ones and zeroes be referred to as an 'object'?" The use of the word "object" is an abstraction of thought. An "object" in code has no more physical form than does a word in any human language. Sure, words have physical representations: speaking a word causes air to vibrate in a sound wave, ink on a page can be shaped into symbols that represent the word, a meaning can be pointed at or mimed out; but none of these are the word itself. Human language is a system of abstraction: it communicates the idea of a thing, but not the thing itself.

This image of a pipe is no more a pipe than the word "pipe" is a pipe; in the same way, a code object named pipe is not a pipe, but only another form of representing a pipe.

As humans, we’re constantly faced with myriad facts and impressions that we must make sense of. To do so, we must abstract underlying structure away from surface details and discover the fundamental relations at work. Abstractions reveal causes and effects, expose patterns and frameworks, and separate what’s important from what’s not. Object orientation provides an abstraction of the data on which you operate; moreover, it provides a concrete grouping between the data and the operations you can perform with the data—in effect giving the data behavior. —Object-Oriented Programming with Objective-C, Apple Inc.

A code object representing a water pipe (instead of a smoking pipe) might contain values for length, diameter, material, and manufacturer. The bundling of these individual pieces of information together begins to form a larger whole.

Object-Oriented Programming, however, does more than just bundle up individual pieces of data that represent a "thing" — it also bundles customized functions that can be performed on that data. These are called methods: behaviors that an object performs upon its internal data and even upon other code objects.

An object in code is a thing with all the data and all the logic required to complete a task. Objects are models and metaphors for the problems we solve in code.

Object-oriented programming was born from the trend of making digital lives reflect our real lives. In the 1970's, Adele Goldberg and Alan Kay developed an object-oriented language at Xerox PARC called SmallTalk, which was used in the first personal computer.

Ruby comes with a few types of Objects to get us started, things like Integer, String, Array, etc. We call these base types of Objects "Primitives." But what if we wanted to create a new type in our programming universe, a new kind of object for our code? That's what the class keyword and object orientation allows us to do.

Resources

Video Review- Intro to Object Orientation

View Object Orientation on Learn.co and start learning to code for free.

Last updated