vote up 10 vote down star
3

What do you think the benefits of functional programming are? And how do they apply to programmers today?

What are the greatest differences between functional programming and OOP?

flag

1  
Functional programmers get all the girls. It's like being gay! ;-) – Seventh Element Jan 28 at 23:38

4 Answers

vote up 15 vote down check

The style of functional programming is to describe what you want, rather than how to get it. ie: instead of creating a for-loop with an iterator variable and marching through an array doing something to each cell, you'd say the equivalent of "this label refers to a version of this array where this function has been done on all the elements."

Functional programming moves more basic programming ideas into the compiler, ideas such as list comprehensions and caching.

The biggest benefit of Functional programming is brevity, because code can be more concise. A functional program doesn't create an iterator variable to be the center of a loop, so this and other kinds of overhead are eliminated from your code.

The other major benefit is concurrency, which is easier to do with functional programming because the compiler is taking care of most of the operations which used to require manually setting up state variables (like the iterator in a loop).

Some performance benefits can be seen in the context of a single-processor as well, depending on the way the program is written, because most functional languages and extensions support lazy evaluation. In Haskell you can say "this label represents an array containing all the even numbers". Such an array is infinitely large, but you can ask for the 100,000th element of that array at any moment without having to know--at array initialization time--just what the largest value is you're going to need. The value will be calculated only when you need it, and no further.

link|flag
vote up 1 vote down

If you don't already know functional programming then learning it gives you more ways to solve problems.

FP is a simple generalization that promotes functions to first class values whereas OOP is for large-scale structuring of code. There is some overlap, however, where OOP design patterns can be represented directly and much more succinctly using first-class functions.

Many languages provide both FP and OOP, including OCaml, C# 3.0 and F#.

Cheers, Jon Harrop.

link|flag
vote up 2 vote down

The biggest benefit is that it's not what you're used to. Pick a language like Scheme and learn to solve problems with it, and you'll become a better programmer in languages you already know. It's like learning a second human language. You assume that others are basically a variation on your own because you have nothing to compare it with. Exposure to others, particular ones that aren't related to what you already know, is instructive.

link|flag
that's a benefit of learning it, not a benefit of the paradigm itself – Moe Sep 24 '08 at 16:42
But are they really separate? From the standpoint of the original questioner, I would say not - they are most likely looking for benefits in total of spending the effort to learn a functional language. – Kendall Helmstetter Gelner Jan 30 at 7:16
"that's a benefit of learning it, not a benefit of the paradigm itself". The paradigm will leak over into your other OOP work and can help simplify your development there. You can approach problems from a "compute this output from this input" and "compose these two functions that compute new data" instead of "wait---what was the state of some shared variable over there?" and "did I get these procedures to execute in the correct order?". Seriously, you get these benefits (from understand the FP paradigm) in Python, C#, C++, Java, you name it. – Jared Updike Nov 9 at 19:35
vote up 2 vote down

It doesn't have to be one or the other: using a language like C#3.0 allows you to mix the best elements of each. OO can be used for the large scale structure at class level and above, Functional style for the small scale structure at method level.

Using the Functional style allows code to be written that declares its intent clearly, without being mixed up with control flow statements, etc. Because of the principles like side-effect free programming, it is much easier to reason about code, and check its correctness.

link|flag

Your Answer

Get an OpenID
or

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