vote up 39 vote down star
30

As far as I can tell, in spite of the countless millions or billions spent on OOP education, languages, and tools, OOP has not improved developer productivity or software reliability, nor has it reduced development costs. Few people use OOP in any rigorous sense (few people adhere to or understand principles such as LSP); there seems to be little uniformity or consistency to the approaches that people take to modelling problem domains. All too often, the class is used simply for its syntactic sugar; it puts the functions for a record type into their own little namespace.

I've written a large amount of code for a wide variety of applications. Although there have been places where true substitutable subtyping played a valuable role in the application, these have been pretty exceptional. In general, though much lip service is given to talk of "re-use" the reality is that unless a piece of code does exactly what you want it to do, there's very little cost-effective "re-use". It's extremely hard to design classes to be extensible in the right way, and so the cost of extension is normally so great that "re-use" simply isn't worthwhile.

In many regards, this doesn't surprise me. The real world isn't "OO", and the idea implicit in OO--that we can model things with some class taxonomy--seems to me very fundamentally flawed (I can sit on a table, a tree stump, a car bonnet, someone's lap--but not one of those is-a chair). Even if we move to more abstract domains, OO modelling is often difficult, counterintuitive, and ultimately unhelpful (consider the classic examples of circles/ellipses or squares/rectangles).

So what am I missing here? Where's the value of OOP, and why has all the time and money failed to make software any better?

flag
1  
Your analogy is too high an abstraction for your intended "use case"; table, tree stump, bonnet, someone's lap are compositions of molecules, atoms, protons, neutrons, electrons, forming a large-enough surface area for your butt to rest against by force of gravity. – icelava Dec 31 '08 at 2:47
4  
No matter how many times this same thread is started, it always garners a lot of interest (despite the fact that duplicates are usually not tolerated here). And of course, the chosen answer is always one that agrees with the initial opinion of the asker. – TM Dec 31 '08 at 3:04
1  
I'm sorry but I can't shake the feeling that you've never programmed using any kind of language. Here's why: OOP is the base of operation for base component libraries in all the modern environments (Java, .NET, Python, Ruby - just to name a few main-stream ones). All those base libraries are reused on a daily basis so if that doesn't count I don't know what does. So don't get me wrong here but code reuse if a fact - and an extremly common one! I don't want for this to sound offending in any way - just making a point here. – Matthias Hryniszak Aug 8 at 19:08
show 5 more comments

45 Answers

prev 1 2
vote up 1 vote down

I know I find OOP useful pretty much solely on a syntactical sugar basis (encapsulation, operator overloading, typechecking). As to the benefits of OOP... I don't know. I don't think it's worse than procedural stuff.

On the lighter side, my OOP lecturer said that OOP is important because otherwise the "code would have too many loops". Yeah. Sometimes it's depressing that I pay $500 per paper. :(

link|flag
show 1 more comment
vote up 1 vote down

"The real world isn't "OO","

Really? My world is full of objects. I'm using one now. I think that having software "objects" model the real objects might not be such a bad thing.

OO designs for conceptual things (like Windows, not real world windows, but the display panels on my computer monitor) often leave a lot to be desired. But for real world things like invoices, shipping orders, insurance claims and what-not, I think those real world things are objects. I have a stack on my desk, so they must be real.

link|flag
vote up 1 vote down

The point of OOP is to give the programmer another means for describing and communicating a solution to a problem in code to machines and people. The most important part of that is the communication to people. OOP allows the programmer to declare what they mean in the code through rules that are enforced in the OO language.

Contrary to many arguments on this topic, OOP and OO concepts are pervasive throughout all code including code in non-OOP languages such as C. Many advanced non-OO programmers will approximate the features of objects even in non-OO languages.

Having OO built into the language merely gives the programmer another means of expression.

The biggest part to writing code is not communication with the machine, that part is easy, the biggest part is communication with human programmers.

link|flag
vote up 1 vote down

It's the only language-portable methodology for keeping variables grouped together with the functions/methods/subroutines that interact with them.

link|flag
show 2 more comments
vote up 1 vote down

OOP helps separate interface from implementation. You do not need OOP support in the language to benefit from OO design.

One small example where OOP has helped tremendously:

The UNIX Virtual File System (VFS) layer presents a uniform interface (open/read/write) using tables of function pointers -- much like the C++ virtual table dispatch.

Clients use the same set of calls regardless of whether they are talking to a local file system, a remote Network File System (NFS) or (today) fake file systems (e.g. /proc).

See the original Sun paper: Vnodes: An Architecture for Multiple File System Types in Sun UNIX

link|flag
show 1 more comment
vote up 1 vote down

Will we say the same things ten years from now about functional programming?

link|flag
show 1 more comment
vote up 1 vote down

The real world isn't "OO". The real world is not largely structured from sensible pieces. Instead it's made from chaotically moving particles. The earth is a particle soup. Still people see birds, trees, sky, ground, forests, ponds. OO is about abstraction of program components. It's fundamentally flawed to think about OO for modelling something else than programs.

All the money and time failed to make software any better, because it failed to make programmers smarter, also because it failed to change the way how people think about software. "OOP" in the sense you use it is a buzzword used to get the money out from idiots. Yes, people who have put money on "OOP" education and tools are idiots. People who tend to fall on hoaxes tend to be idiots.

The value of "OOP" is the abstraction and the code reuse inside the same program. OOP is meant to be used with imperative programs.

If you get up from assembly routines. Assembly is an ordered sequences of pairs composed from labels and instructions. Assembly code is similar to the 'particle soup'. Now you can move to the subroutine. Subroutine picks a label from that label:instruction -soup, and hides the rest of labels inside the subroutine. As the effect code becomes more abstract and your namespace stays cleaner.

Now, if you think what subroutines do... Few of decades ago people were thinking that subroutines are at their best when they work on the arguments. That made them to give each object it's own protocol. Protocol would contain label:procedure -pairs. Now called selector:method -pairs. Procedures weren't bound directly to the other procedures anymore, explaining the 'late binding' -term. Along with keeping the history from the protocols (inheritance), this formed the 'object orientation' in the smalltalk.

You've been incapacitated the late binding mechanism and forgotten what inheritance means. And you yet wonder what you are missing there. "Where's the value of OOP, and why has all the time and money failed to make software any better?" - I think you stuffed them into your arse. When you attempt to colonoscopy you will find them.

link|flag
show 1 more comment
vote up 0 vote down

HANDLEs (and the rest of the WinAPI) is OOP!

Are they, though? They're not inheritable, they're certainly not substitutable, they lack well-defined classes... I think they fall a long way short of "OOP".

link|flag
vote up 0 vote down

Maybe a bonnet, lap or a tree is not a chair but they all are ISittable.

Yes, but only ex post facto. They're ISittable because someone sat on them.

link|flag
show 1 more comment
vote up 0 vote down

To me, the value of OOP is to reduce the scope and to separate state from behavior. With smaller scope, code is easier to understand.

It can be done in most languages, all is needed to achieve this is a way for a state to delegate a method call to a behavior, and a way for a behavior to further delegate the call to a parent behavior.

As to have a set of classes model a domain in an effective way, there is no magic method. Like a piano, we have to practice. OOP is an abstract tool, it can help you build code in a simpler way, but it can't think and analyze the domain of your app for you.

What works for me is to stay close to the domain as long as possible, while still avoiding most code duplications.

link|flag
vote up 0 vote down

I agree with InSciTek Jeff. Even if you don't use OO in its purest sense, Encapsulation Theory can help reduce potential structural complexity: http://www.edmundkirwan.com

@ DrPizza

If procedureal programming uses the benefits of encapsulation to the same degree then good on it!

link|flag
vote up 0 vote down

OOP is the process of implementing design constraints and superficial abstractions in order to attempt to coerce developers away from making sloppy code. If human intelligence (or more accurately, its limits) was not a factor, I'd say OOP would be a complete waste of time.

We should all be coding in raw binary! Wahahaha!

link|flag
vote up 0 vote down

Try TDD and then you'll see the values of OOP.

link|flag
vote up 0 vote down

There are already a lot of answers on this as this is an old post but i thought i'd chime in.

You mention "class taxonomy" a bit which gets into subtyping and polymorphism. This all revolves around inheritance which in it heyday was considered the silver bullet of OOP. Nowadays, inheritance and large class hierarchies are actually discouraged, even among shops that do a lot of OOP. This is because the other pricinples of OOP, such as encapsulation, loose coupling, cohesion and so forth have been found to be far more useful than inheritance. I would even go so far to say that loose coupling is the reason for OO, not code reuse. Code reuse usually happens at the method/function level. I do sometimes reuse classes under different circumstances, but not that often. Loose coupling though helps organize a system quite a bit. Each object has its own scope, the data in the object isn't or should not be manipulated except by accessor methods or properties, each object should do one simple thing and should talk to other objects thru simple interfaces. This handful of principles helps code readability, helps isolate bugs and prevent you from having to make many changes in lots of different places to change one thing. When objects are not closely intertwined, you can change one without affecting others. This has been a huge benefit to me. Inheritance is useful only now and then.

Code reuse is still important and if you are copying and pasting or rewriting the same code, thats a bad practice even under plain old procedural, structured or functional programming. That actually increases costs due to duplicated effort, increased maintenance and more bugs.

link|flag
vote up -10 vote down

-2? Really? I get minus marks because the value of the received wisdom isn't immediately apparent?

Already this site is rivalling digg, and it's not even public yet. Good job, guys.

link|flag
1  
Maybe if your attitude exhibited a bit more humility, people wouldn't see you as a troll. That is the way I see you, so good luck on getting people to see you differently. Your dogmatic opinions probably scare people away... – Jason Bunting Sep 10 '08 at 22:31
1  
Losing the antagonistic attitude never hurts... – The Wicked Flea Dec 31 '08 at 13:48
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.