vote up 10 vote down star
6

Functional programming is growing quickly. A lot of advices "How to prepare for the future" I've read contain "Learn a functional programming language".

I am new to functional programming. What is its true power? Is it replacing OOP? What fields of programming that functional programming is most powerful? What functional programming language suitable to learn?

Thank you.

flag

26% accept rate
1  
Why haven't I thought about asking this? – Sung Meister Apr 30 at 14:17
2  
Voted to close, as this is a huge open-ended discussion question, and all the specific questions are duplicates. – Brian Apr 30 at 14:19
3  
@dance2die - doesn't matter who asks, right? Funny two people star this but only I upvoted. Do you really find it expensive to give an upvote? This IS a good question. – MasterPeter Apr 30 at 14:20
1  
@Brian: I agree. Looking at the "Related" sidebar, it appears that funtional programming questions have been quite thoroughly covered already. – gnovice Apr 30 at 14:26
wiki this, please – jmucchiello Apr 30 at 14:41
show 3 more comments

closed as exact duplicate by Brian, ryeguy, mquander, Adam Robinson, jalf Apr 30 at 14:49

7 Answers

vote up 4 vote down

Functional programming and object oriented programming are orthogonal; you can use both things together in some languages, like ruby.

eg: you've got an array of employees objects, and want to get a list of employees names and salaries for employees earning more than 50k

employees.select { |employee| employee.salary > 50000 }.map { |employee| [employee.name, employee.salary] }

will give you an array like

[ ['John', 52000], ['Peter', 60000]]
link|flag
vote up 4 vote down

Functional programming lends itself very well to parallel processing, since ideally global state is not an issue. Traditionally, functional programming has been largely for artificial intelligence folks, but it really is nice for any huge-scale application you want to build and run on a farm of machines.

It is not replacing OOP, and I would suggest learning LISP or Haskell if you are interested.

link|flag
I'm no expert on Functional programming. But as I understand it; the multi-threaded functionality is free, so weaker programmers can stay productive with the onslaught of multi-processor chips. +1 – John MacIntyre Apr 30 at 15:33
You're right, except for the "weaker programmers" part. It doesn't make you a "better" developer to write sloppy, side-effect-ridden functions in C# or Java and manage pull off parallel processing. – Stuart B Apr 30 at 17:25
@Stuart B-Thanks, and I wasn't suggesting sloppy programming would make you a better developer. But we all know there are a lot of programmers out there who can't do recursion, redirection, etc ... I kind of wonder if MS coming out with F# wasn't an attempt to keep those programmers able to write 'working' code against the multi-processor machines. Effectively dumbing down parallel processing the same way as they dumbed down Windows programming with Classic VB. – John MacIntyre Apr 30 at 17:33
vote up 2 vote down

Functional programming is mostly powerful because it offers concise ways to write algorithms that are more natural for people and easier for compilers to understand. This is largely accomplished by abstracting out processes into common higher-order functions over functions, and providing useful syntax to do so readably and quickly.

Since the results are often simpler and free of difficult-to-manage side effects, they are frequently more readable and less buggy than more procedural alternatives, and they're also frequently easier to parallelize (either explicitly or automatically) which is the source of a lot of recent interest.

link|flag
vote up 2 vote down

I just attended a lecture on this topic couple of days ago, and it turns out that Haskell is the way to go, if you choose to go down that road. F# is a strong choice too. But I just can't see how Functional programming is going to replace anything. It will be a nice addition to our hackers' "toolboxes" :)

link|flag
vote up 1 vote down

In addition to the parallel processing advantages that Stuart B mentions, a very powerful feature of functional languages is the ability to treat functions as first-class objects. This means that code can be constructed on the fly and passed around. This is particularly handy for certain types of algorithms (evolutionary algorithms in particular), which is probably why it's so popular in computer science, but it also has practical implications. For example, C# 3.0 borrows this feature in order to implement a lot of the features of LINQ (e.g. dynamically creating code to process query results).

link|flag
Agreed. The idea of functions first-class objects is becoming common now, but it really started in functional programming. S expressions? More like sex expressions. – Stuart B Apr 30 at 14:33
vote up 1 vote down

Hmm. I don't think functional programming replaces OOP. Also, functional programming is not new, it goes back to the 70' and earlier.

Nowadays it's good to know different (programming) languages. So, Java, C/++/# are at least to know. You don't have to become an expert... but know them. These languages aren't plain functional programming languages. For those, see Erlang or Haskell. Look at them and play around to find out what they can do for you...

Cheers, T.

link|flag
vote up 0 vote down

It is very easy to write unit tests for functional-programming fragments because there are no side-effects.

link|flag

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