vote up 0 vote down star

Ignoring skilled people, libraries, and tools in both types of languages, are there good reasons to pick an OO language over a functional language? For what kind of projects?

Update: I ask this question because I have read so many good things about functional languages: no side effects = less bugs, more expressive, more concise, given a skilled programmer there is a better chance of writing buggy code in an OO language than a functional one, and faster development time with a function language.

What are the strong points of OO languages?

flag

43% accept rate
7  
And, as by the terms of the question there cannot be a single correct answer, this should be community wiki – Neil Butterworth May 12 at 18:25
4  
This question seems kinda fundamentally flawed, since "object-orientation" is not really incompatible with "functional-ness." – mquander May 12 at 18:29
1  
but easy to write OO style on Scheme – Javier May 12 at 18:32
1  
I disagree with making the question CW. First, this question can easily have a single correct answer (most likely it will have a lot), and second, even if it didn't, I fail to see why that qualifies it for CW. CW is, by definition, something that the community as a whole takes ownership of and maintains. I don't see why that's necessary for a question comparing two programming paradigms. – jalf May 12 at 18:40
4  
What's better, a hammer or a screwdriver? – Ed Swangren May 12 at 21:06
show 3 more comments

closed as subjective and argumentative by Neil Butterworth, Chris Conway, Mehrdad Afshari, Ed Swangren, Zifre May 12 at 21:07

14 Answers

vote up 11 vote down

This question is largely unanswerable, because if unlimited skilled people are available then your choice of programming paradigm is irrelevant.

link|flag
+1 Not sure why this was downvoted - this is a good answer. – Andrew Hare May 12 at 18:32
vote up 9 vote down

Usually the reasons for choosing a languages is because of the skill-set of developers and available libraries and tools. In other words all things are never equal, if they were then the language itself would be more of a preference and would be chosen for its expressive ability in the application domain.

link|flag
vote up 1 vote down

It may not always be an either/or question. There are some languages that do a good job of blending the OO and functional paradigms (I believe F# and Scala are two that do this, to a certain extent, depending on your definition of "OO" and "functional").

link|flag
vote up 1 vote down

The most obvious answer is OO languages earn you the most amount of money (depending on how you categorise C, so ignoring that for now)

link|flag
vote up 2 vote down

Which language to pick is always tricky, and as someone pointed out, it will be based on people, budget, time, etc. I won't pick a language that I don't know for a new project, for example.

But assuming that you have developers that are familiar with several language types, then the problem that is being tackled should help determine the language.

For example, if I am doing some modeling, I would pick an OO language, as a model is naturally an object.

If I am doing event processing or something that is math intensive, that doesn't share any changing data, then a functional language would make sense.

For example, a tile-based game can be functional, but if you have many objects that OO would be better.

Then you have the situation, as was mentioned, where you may have a mix of both, such as Scala, Erlang and F#. In these cases you should do a good analysis of the problem and then determine where it makes sense to use which language, and partition appropriately. For example, in a complicated game I may have the UI be in OO, but the physics engine may be in FP.

link|flag
My rule of thumb: if it models the real world an imperative language is usually best. If it models math, functional will almost always make your life easier in the end. Looping and complex state feel like hacks when I am forced to use them in functional languages. – Caspin May 12 at 18:55
Caspin - Math models the real world. It's called science. Your distinction doesn't make much sense to me. – Chris Lutz May 12 at 19:13
Perhaps it would be less confusing to say "If it reflects human perception of the real world, OO is good. If it reflects a mathematical model, functional is good." Most people do not view the world functionally, even though it is possible to model it mathematically. – Chuck May 12 at 20:40
I am designing an ESB that will be written in a FP language, so not just math operations are good for this area. Basically, anything that can be threaded and doesn't have to share state is a great candidate for FP, if it can be described in OO terms then that is good, else it may be a good candidate for something like C. – James Black May 12 at 21:30
vote up 5 vote down

Ignoring all the advantages OOP languages have, there is no advantage to OOP languages. ;)

The biggest reason why people prefer OOP languages is the amount of skilled programmers, the broad availabilities of libraries for every purpose and the excellent tools.

And apart from that, many modern languages incorporate features from both paradigms. Why would I choose one or the other, when I can have most of the nice features from both?

However, there are also things that can be done more conveniently in imperative languages (including OOP ones). Many common tasks rely so heavily on side effects that they may be easier to express in an imperative language.

link|flag
For what it's worth, of the major Functional languages, only one (Haskell) is "pure" (no side effects), and Wikipedia's list (en.wikipedia.org/wiki/…) only has three "purely" functional languages. Lisp, Scheme, ML, and the rest all have side effects. – Chris Lutz May 12 at 19:10
Clojure is as pure as Haskell, isn't it? – Chuck May 12 at 20:35
@Chuck - Not according to their website: clojure.org/other_functions#toc2 Any function that prints data has side-effects, and is therefore not pure. – Chris Lutz May 13 at 0:49
OOP and Functional paradigms are both valid ways to view problems. But like everything, there are + and - OO sucks when you force everything to be an object. If I want to create a simple standalone action like squareroot, I have to contrive a class to perform it? I have to create a class for Main()? Stupid... Functional sucks when everything is forced to be deterministic - return values are guaranteed for any given function input. But this is not real life - I/O, like user input, is not deterministic. Rigid dogmatism is too constraining. Choose the right tool for the job - pref. a mix. – Greg Jul 25 at 2:56
vote up 3 vote down

I think imperative languages (OO languages) are mainstream and that's the best reason for them (libraries, support). Most programmers think in an imperative way, many tasks have got an imperative nature. There are much more Java or C# applications than Haskell jobs.

But there is definitely a trend to encompass functional elements in imperative languages vice versa.

Just look at C# - OO, Imperative - But:

var SquareNums = from i in Range(1, 10) select i * i;

That's pretty functional. There are many functional elements in modern languages - Immutable variables, Generics, Lambdas/Closures. And even if you chose OO languages, it isn't wrong to know about the advantages of functional languages and let them influence your coding.

link|flag
I think this will be the trend for a long time: more and more declarative/functional code wrapped in imperative code. Eventually functional code won't even be noticed by the average programmer. It will just be one more tool in the toolbox, just as SQL and the declarative model it uses is noticed. – Godeke May 12 at 19:21
Technically OO languages are both declarative and imperative. Class definitions are declarative while methods are imperative. A purely imperative language would be strictly procedural. One could argue that even function definitions are declared so in this sense a pure imperative language would use only gotos for flow control... BASIC or Assembly anyone? – Kenneth Cochran May 12 at 19:37
vote up 0 vote down

This is a contrived example, but OOP is for building systems with interacting objects, such as modeling the real world. FP's strengh lies in parallel processing due to limitations on side effects.

If you want to do something specific and complex and run it in parallel, try modeling it functionally to see what gains you can get.

I recently completed a Project Euler question with both C# and F# and the F# version was exponentially more efficient.

link|flag
vote up 0 vote down

I find it easier to think in terms of objects when programming. Given that, I find it easier to convert that thinking into programming using an OO language as opposed to non-OO.

link|flag
vote up 1 vote down

A lot of good answers here, but a lot of these answers miss the one inherent weakness of functional languages over imperative/OO languages: performance.

For instance, here's how you determine the length of a list in Haskell:

length :: [a] -> Int
length [ ] = 0
length (x:xs) = 1 + length xs

What this does, in a nutshell, is give back zero if the list is empty. If the list is not empty, strip off the first element and call the length function recursively until there are no more elements. You have to do it this way, because there are no loops in Haskell. And no, there are no fancy hacks under the hood to improve things: this is what's under the hood -- Haskell's standard length function, taken straight from the source(pdf).

This is inherently slower and less efficient than the OO approach, which usually stores a list count in its mutable data. In an OO language, retrieving a list's length is O(1), but in Haskell, it's O(n). But without loops or mutable data, it's the only possible way for Haskell to count list size. Now there are ways to optimize tail recursion (see Sussman and Abelson's SICP for more on this), but my experience with the current Holy Grail of functional programming is that it throws memory exceptions and stack overflows on data that C++ or Java could chew through without raising a sweat.

As much as I love Haskell and FP (and I love them both a lot), there are times when the imperative approach simply makes more sense, particularly when data sets are large and when performance is absolutely critical. FP answers a lot of currently-relevant problems (particularly concurrence), but it is not a silver bullet. As the man once said, there is no silver bullet.

EDIT: Now that I've had a few weeks with this one, I'm going to suck it up and admit that this is probably the single dumbest answer I've ever given on SO. I did not intend, on writing it, to pick a fight with Haskell, but after a bit of digging around, I've been impressed with the performance improvements in the language over the last few years, as evidenced by its numbers in the Great Computer Language Shootout. While most of its benchmarks are slower than C, and often slower than Java, Haskell kicked butt on a surprising number of them. So relax, Haskellers, I'm not trying to FUD you. If I was competing in a programming contest, I'd still stick with C, but the more I learn about Haskell the more I like it.

link|flag
If that's your main point versus Haskell, then good riddance. That "recursive" code (and a gazillion other examples) is translated by GHC to C in the same exact manner that you would write a 'strlen' function in C i.e. a loop. It's a trivial optimization. – Vicent Marti May 12 at 19:23
I'm not "versus" anything -- I'm just trying to answer the question in a way that makes the OP aware of the tradeoffs involved. Personally, I love Haskell (you missed that part, apparently). And while we're at it, C's length function is inherently inefficient as well, and for the same reason -- because you have to traverse the full string to find the terminating null. Any decent OO language stores the length as part of the string object. – rtperson May 12 at 19:29
I don't see the point. C strings do not store their own length, so it's necessary to scan. Is there a reason why a functional language couldn't have strings store their own length? – David Thornley May 12 at 20:35
No reason at all, now that you mention it. But my point, which I could have demonstrated better, is that functional languages are inherently slower than imperative languages. I'm not alone in saying this -- check out the Haskell Wiki, particularly the section titled "When C is Better" haskell.org/haskellwiki/Introduction – rtperson May 12 at 20:44
vote up 1 vote down

If you write an inefficient algorithm, why blame the language for the crappy performance?

link|flag
vote up 2 vote down

The basic answer is "human psychology." This seems lame, because there's such a wide variety of people out there, but I would put solid money on the notion that most people do not think functionally.

Our minds are generally wired to look at things a certain way, and OO more closely matches this mental map of the world for most people. Every day we see things interacting and producing effects — this is natural to us, so it doesn't take a lot of learning to "get" OO. We are born ready to do this sort of relational thinking. We don't see mathematical functions. For most people, it takes a lot more hard thinking to write a functional program.

Being able to hold a model of a program — or at least some subset of a program — in your mind is very important for a programmer. Anything we can do to simplify this automatically has that in its favor. Functional programming has many strengths, but as far as functional alone goes, I don't think that is one of them for most people.

link|flag
vote up 2 vote down

First, my favorite language (Common Lisp) supports both object-oriented and functional programming, so I don't see any sort of dichotomy.

Second, most organizations don't rely on getting rock star programmers. They plan to keep their software departments sustainable without them, which has several consequences. Their current development staff, while usually competent, is not the sort to learn new things fast and well. Therefore, introducing a new language is going to get resistance and will have, at best, a longer-term payoff. Introducing a new programming paradigm is much more drastic. You can teach a Java programmer C# and .NET fairly quickly, but teaching him Haskell or Prolog will take a long time.

Moreover, most organizations can't afford to have indispensable people. They have to be able to go on after somebody moves to a different job, gets hit by a truck, or converts to Pastafarianism and becomes a missionary. This means they want to be able to hire a replacement fairly fast, and without extensive retraining. This means that they prefer languages and development environments that are already popular.

Third, don't underestimate the language community and resources. There are quite a few things Perl isn't the best language for, but if you can find a few applicable modules at CPAN you might be able to put together a robust application fast.

Therefore, a business would look for O-O languages because they have in-house expertise, can hire quickly and easily, and the extensive community infrastructure makes them easier to work with.

There have been turnovers in popular programming languages, although rarely complete. We still use C, C++, Java, and C# a lot. There's still a lot of COBOL code around, and there's still a thriving Fortran community. BASIC has mostly disappeared except for VB6 and VB.NET, but there's a lot of that around. Pascal has faded, but isn't gone.

And those are all procedural languages, some of them object-oriented. The way paradigms have shifted was to introduce new capabilites into older languages. Structured programming was in COBOL early, in a half-assed way, and made its way into Fortran. Eventually Pascal came out, which was designed around structured programming. O-O was added onto C, and eventually Java and C# appeared. Similarly, some O-O languages are getting a few functional features, and sometime next decade we may see a primarily functional language become very popular (although it will be able to handle structured and O-O paradigms also).

link|flag
vote up 0 vote down

Why would you choose an apple fruit over an orange fruit?

[answer for the humor impaired: it rather depends on what your trying to do with it]

link|flag

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