vote up 1 vote down star

Possible Duplicate:
Functional programming and non-functional programming

What does the "functional" in functional programming mean? It certainly doesn't mean that functional programming is based on functions, does it? Does it mean that functions are first class objects that can be passed around?

flag

19% accept rate
1  
en.wikipedia.org/wiki/Functional_programming/… – skaffman Oct 10 at 11:13
And dup of stackoverflow.com/questions/24279/…, among many others – skaffman Oct 10 at 11:14
Just have a look at wikipedia: en.wikipedia.org/wiki/Functional_programming/… – Maximilian Mayerl Oct 10 at 11:15

closed as exact duplicate by skaffman, Martin, Greg Hewgill, Kobi, jitter Oct 10 at 11:20

1 Answer

vote up 3 vote down

Well, it does mean that it's based on functions, largely. In particular:

  • Functions are first class values
  • Functions tend to be genuine mathematical functions: put in some input, get some output

But more importantly, in functional programming one tends to think in terms of functions rather than (say) objects or straight "commands". For example, where you might use an interface to describe some behaviour that you want to pass to a method in an OO language, you may well replace that with a function in a functional language. A good example of this is when dealing with collections - functions are used for predications, projections, ordering keys etc.

link|flag

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