vote up 12 vote down star
3

Did you ever feel any downside of using OOP as a developer?

Do you think over-usage of OOP concepts could lead to something like over-normalized database structures?

Where do you think we should draw a line while applying OOP concepts in our design?

Cross-links:

flag

38% accept rate
Edited in a cross-link that was posted in this answer: stackoverflow.com/questions/145983/… – Jason Baker Sep 28 '08 at 22:38
2  
should be community wiki – SilentGhost Sep 15 at 17:57

15 Answers

vote up 21 vote down

Yes, it gets to a point where everything is so abstracted that simply navigating the code becomes a pain.

For example, CruiseControl.NET uses interfaces exclusively, and it can take me 10-15 minutes to track down the actual concrete class used in a situation, so I can find where I want to make a one line code change...That is OOP overkill in my opinion.

link|flag
vote up 18 vote down

no - there is no downside to using OOP as a developer, when it is the appropriate paradigm for the solution

no - over usage of OOP concepts is a red herring, you can 'over-use' the concepts in any paradigm; again this comes back to the developer and the solution space. Correctly designed objects tend to be in third normal form.

As an aside, complaints about "over-normalized" are often a big red flag for "lazy programmer". I have never seen an over-normalized database design, but i've seen a lot of un-normalized databases. I've also seen OO designs with excess interfaces, abstract classes, namespaces, etc., but then again I've also seen procedural programs littered with one-line functions used exactly once. It all depends on the developer's understanding of the problem, solution, and paradigm.

"it's a poor carpenter that blames his tools" ;-)

link|flag
Nice answer. I deleted mine, and will let yours stand. – Rich B Sep 28 '08 at 15:24
I think its misleading to refer to "third normal form objects". You are mixing concepts here. Also, over-normalization exists, assuming you have finite resources (and who doesn't?). – Paul Batum Sep 28 '08 at 15:43
[@Paul Batum]: an object always has a unique identifier, i.e. a pointer or reference, which is analgous to its primary key. All of the attributes of the object depend on this reference. Hence 3NF. There is nothing wrong with 'mixin concepts', in fact it is useful to do so - different points of view – Steven A. Lowe Sep 29 '08 at 15:11
@[Rich B]: Thanks Rich, I'll email you an upvote later ;-) – Steven A. Lowe Sep 30 '08 at 2:25
The reference to an object is not like a primary key. If you persisted that object and then hydrated it, its pointer/reference would have a different value. Here is a bonus challenge, show me an object that is NOT in "third normal form" (by your definition). – Paul Batum Sep 30 '08 at 21:48
show 3 more comments
vote up 8 vote down

Did you ever feel any downside of using OOP as a developer?

Of course. There's always a downside, anyone who claims otherwise is either lying or has a problem moving their neck. Readability, maintainability, performance... can both benefit and suffer from the application of OO concepts. The trick is to use OO when the upside trumps the downside, and avoiding it otherwise.

...And to ignore the shrill lot who see OOP as the only hammer in the toolbox.

Do you think over usage of OOP concepts could lead to something like over normalized database structures?

Well, let's clarify: over-normalization isn't a concrete concept. If your level of normalization results in a schema that is too slow or too cumbersome for your needs, then for you it is over-normalized. Similarly, if your application of OO results in an object model that is obtuse, cumbersome, slow... you've over-done it, used the wrong tool for at least part of the job.

IMHO, OO vs. non-OO is a red herring, thrown out by folks who want all-or-nothing systems/platforms. Truth is, there's a big place for pure procedural code within most OO systems, and plenty of room for objects within procedural systems.

And they both benefit from a generous dash of functional code...

link|flag
vote up 4 vote down

Yes, see: code smells.

Also, there are other valid ways of doing the same thing... actually some problems are really hard in OOP and easy in other paradigms -- see functional languages like Lisp or Prolog.

link|flag
vote up 4 vote down

It looks like you're looking for an excuse to not use OOP.

Just as with normalisation, you can abuse OOP, making it less worthwhile, but I don't see why that's a valid answer... These pitfalls don't exist because OOP (or DBs) force you to write poor code, rather because the programmer isn't good enough.

If you wrote poor code that crashed all the time, you could hardly blame the compiler, the editor or the command line for your inadequacies, so leave Brittany OOP alone!

link|flag
What warranted this rant? He just wants to know some downsides, and that is a perfectly fair question.. IMHO you can blame the coding paradigm for being a cause of bad code: if I forced you to write in a paradigm that didn't encourage code-reuse with functions or objects, or isolation with namespaces and classes then I believe I could effectively argue that you were being forced to write poor code. This argument you make is dependent on there being nothing more useful than Classes/Objects which is certainly subject and subject to the OP's question. – EvanCarroll Nov 24 at 18:10
The "question" isn't a question; it's rhetorical. Seeing people rant on about over-using something being bad grinds my nuts. You don't *have* to over-OOP things, just as you don't *have* to over-normalise. If you're drowning in OOP, you've gone too far. You've abused it. Simple as that. – Oli Nov 26 at 15:17
vote up 4 vote down

Object oriented code can be hard to read, hard to reuse and result in a complex program state which is hard to manage. Object orientation can also be elegant, but you asked for downsides.

In more detail:

Object orientation means you need to understand the classes in the program and libraries you are looking at, on top of the standard language types. Often this means that you need to know significantly more about the program to read one line of code than you would do in non-object oriented code. For instance, when you are reading code and you see a call it is important to be able to easily find the code that will be called. In object oriented programming, you need to know the class hierarchy, and what particular instances you are looking at; often you can't be sure just reading the code( because of polymorphism). If your object oriented code uses operator overloading then someone looking at one line of code has to understand any overloading going on, and that again means knowing all the classes.

Sometimes you'll get more code reuse with functional programming than object oriented programming, since functions can be kept small, self contained and conceptually simple even if they are used in complex modules.

If your program instantiates many objects which contain references to each other then it becomes hard to be sure garbage collection is going to work, and it can be difficult to serialise the program state (e.g. to display in a debugger). Generally the program state can be hard to manage. Compare this to code using functional programming, which is either just passing state as arguments and results, or grabbing state from a database and explicitly updating it,

link|flag
Hard to read is the actual code that does the job which you shouldn't care at all in the first place. Code that's hard to reuse is code that has tight coupling and is not based on interfaces. Hard to manage is code that's not covered with unit tests. So if you do it the right way (proper use of design patterns, unit testing and a healthy design) your chances of screwing things up are really low. – Matthias Hryniszak Aug 8 at 19:01
vote up 2 vote down

The main abuse of "OO" that I've experienced is when design patterns are used like recipes. Nothing replaces thinking through what the right solution is for your problem.

An overnormalized database structure doesn't have to follow from OOP in a database-based application. Even if you use something like an ActiveRecord pattern, you could still have a a domain layer of transient objects that applies OO concepts.

link|flag
vote up 2 vote down

Yes. The basic concept of an object, or perhaps more precisely a class, is a unit of code that encapsulates data and behavior. In cases where you have only data or only behavior, object orientation forces those ideas into the same bucket. Naive views of object orientation cause separate problems, where overuse of inheritance causes duplicated code. That said, well design object oriented languages, such as Ruby, have concepts that allow you avoid some of those problems. For example, in Ruby you have the concept of a module, which is more or less abstract behavior that can be added to any model.

Some denormalized data structures are troublesome. They tend to require more code and more thought when you have to update something in more than one place. I wouldn't link that to object orientation however. Over-normalized is a problem too. 3rd normal form is a good compromise.

link|flag
1  
Not every OO language follows this route. Counterexamples are CLOS the Common Lisp object system and maybe Io iolanguage.com, Lisaac gna.org/projects/isaac and/or self research.sun.com/self Regards – Friedrich Oct 3 '08 at 6:50
vote up 2 vote down

I think the only way OOP can be a bad thing is if you do it wrong. A lot of amateur programmers seem to grasp the concepts of procedural or functional programming pretty well, but it takes a very different mindset to learn to use OOP effectively.

link|flag
You mean Procedural programming. I've been programming for years and years, and I'm still baffled by functional programming :) – FlySwat Sep 28 '08 at 15:06
Maybe he really did mean functional programming. Universities are fairly good at teaching that so some inexperienced programmers who graduated in the last ~5 years can do it. Universities ore not so good at teaching OO - they tend to confuse it with ADTs. – finnw Sep 28 '08 at 19:01
1  
I think that he really meant procedural programming :D Functional languages are simply to difficult compared to procedural programming. It takes a lot of time to actually grasp the concepts not to mention the proper usage. I'm yet to meet one programmer (persontally, not on-line) that uses functional languages well. – Matthias Hryniszak Aug 8 at 18:56
vote up 1 vote down

This question is somewhat a rehash of this one:

What is the point of OOP?

link|flag
FYI, I added that as a cross-link in the OP. :) – Jason Baker Sep 28 '08 at 22:47
vote up 1 vote down

I think there is a difference between modularity as a concept and OOP as a programming style. OOP is credited with added modularity, but it's not the best way to implement modularity in every circumstance.

The major pitfall is when OOP is misinterpreted as a good design decision for every circumstance, OOP is a tool, and as such must be used appropriately and is not appropriate for all situations.

I've use a programming style where each object is instantiated only once for all functionality and then multidimensional arrays to store all information for the instances of that object. In this way I've separated functionality from information in my programs. I've dumped classic OOP for this model because it's much simpler to understand and update the code.

link|flag
vote up 0 vote down

One code smell I've found in much OO-code I've read (and even written) is the usage of objects with an overly complex and ill-defined state.

link|flag
vote up 0 vote down

The only downside of OOP is that it might make you more likely to over-engineer in the sense of preparing for more future extensions and contingencies. If those never show up, you can end up feeling that you wasted an effort that you would have not got into with a less flexible paradigm.

link|flag
Bu then if you follow the TDD/YAGNI ways you'll do the right thing because it is needed. Ergo: over-engeneering comes from not following best practices (and to some extend from architects that don't know whatta heck they are babbling about when they spit out the specs they don't have to implement) – Matthias Hryniszak Aug 8 at 19:04
vote up 0 vote down

It can be hard to figure the costs of creating objects and disposing of objects. I heard of a Java program that turned out to be spending more than half of it's time creating Gregorian Calendar objects. Re-use of objects can create other problems. I know of a web program that, on the first test, commingled data from one account with another account because objects were being reused without being cleared of data. OOP is not a natural match to recursion.

link|flag
vote up 0 vote down

The most visible downside of OOP is you need more experienced developers. With novice programmers program easily become a piece of mess that goes nowhere near the aim of OOP. I have seen people writing database abstraction classes and still uses a query to access database.

link|flag

Your Answer

Get an OpenID
or

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