vote up 0 vote down star

Possible Duplicates:
Functional programming and non-functional programming
What task is best done in a functional programming style?

What are the real world advantages of using functional programming languages? People seem to be all excited about transitioning from object oriented programming to functional programming, but is there more to this than first meets the eye?

flag
3  
Did you go through the other very similar SO posts? E.g: stackoverflow.com/questions/24279/… – dirkgently Oct 23 at 0:23
i prefer hybrids like Scala – geowa4 Oct 23 at 0:26
@dirkgently: I did, but they all seemed to be specifically comparing non-functional to functional programming. I moreover want to know the advantages of just functional. – Nathan Kleyn Oct 23 at 0:32
@dirkgently: To clarify, not necessarily just differences, but actual advantages. For me to divide between differences and advantages is tough without actual practice in this paradigm. – Nathan Kleyn Oct 23 at 0:35
@Nathan Kleyn: Advantages vis-a-vis what? You do realize that this boils down to a comparison? No offence intended. – dirkgently Oct 23 at 1:36
show 1 more comment

closed as exact duplicate by Marc W, geowa4, Brian, dirkgently, Michael Petrotta Oct 23 at 0:39

3 Answers

vote up 1 vote down check
  1. Functions don't have side effects, they just take input and generate output. Makes your program depend less on mutable states which can change and have unforseen consequences.

  2. Functions are values -- they are basically represented as objects. You can create function literals, set them as attributes and pass them as objects. I believe this is less of an advantage as 1, but it can make it possible for code to be more expressive.

Languages like Scala, F# and OCaml mix the benefits of OO programming with functional programming.

link|flag
vote up 1 vote down

There are many advantages for functional programming. I myself don't think developers are transitioning from procedural to functional. I believe both are useful in different ways.

I use functional programming for these reasons.

1) Expression's are easier to understand than convoluted loops especially with databases. A simple SELECT FROM WHERE JOIN is easier to read than many nested loops.

2) Functional programs which have immutable parameters are thread safe. You don't have to write much to manage threading because the parameters cant change.

link|flag
vote up 0 vote down

There might be some transitioning from OO to functional programming (FP), but OO will remain dominant. You can easily google "OO vs FP" and get all the views you want.

What I want to highlight is, FP is regarded by many pro-OO people as not suitable for large-scale software system. You know, you can't have the 'cool' OO cencepts and design patterns.

The thing is FP can be very versatile and accomplish as good, if not better than some OO designs. Having said that, it really depends on the programmer's skill and expertise.

link|flag

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