vote up 3 vote down star
1

What languages are available that promote both object-oriented and functional programming? I know that any language that supports first-class functions can be considered functional, but I'm looking for a syntax that's specifically targeted for both coding styles.

Using such a language, I'm imagining isolating all state changes to a single portion of code and having the rest of the program be purely functional. Just thinking of it makes me drool (debugging heaven!).

So far I've discovered Scala although I've only just heard of it (and it looks amazing). Are there any big contenders in this "mixed style" paradigm?

flag

1  
I'm not really into languages that mix like that. It ruins the point for me. I'm learning Haskell right now, and then I'll be delving deeper into Clojure. My two favorite languages! :D – Rayne Jun 18 at 22:58
I've used Clojure, it's great for an ex-Lisper! I may do it opposite from you and learn Haskell next. – Kai Jun 19 at 2:39
@Kai I already know Clojure. When I say "delve deeper" I mean I intend to get extremely serious with Clojure. – Rayne Jun 20 at 1:07

10 Answers

vote up 10 vote down check

The best known are OCaml and F# (which can be vaguely described as OCaml for .NET).

There are many other multi-paradigm languages, like Oz, but they have mostly pedagogical value. By contrast, OCaml is very practical. It's almost as fast as C and almost as beautiful as Haskell :)

The popular scripting languages like Python and Ruby let you program in functional style as well. However, they don't provide one of the strongest facilities that "classical" functional languages (as well as OCaml) have: pattern matching (don't mistake it for regexp).

link|flag
2  
OCaml and F# are certainly almost as pretty as Haskell syntax-wise, but they do not let you abstract over type constructors (no higher-kinded types). Scala isn't quite so pretty, but it does give you higher kinds. If you just want to write prettier code, that's fine, but if you want more powerful abstractions, the Caml variants won't get you there. – Apocalisp Jun 19 at 16:29
vote up 9 vote down

OCaml and F# are the most popular languages that mix OOP and FP, as far as I know.

Most languages, like Ruby, mix functional programming in, but a lot of people don't even realize it. I find languages like that leave a lot to be desired on the syntax front and such.

link|flag
vote up 9 vote down

Also, many scripting languages such as Python, Ruby, Lua, etc. have this capability, but lack many of the nice features of functional languages such as algebraic data types and pattern matching.

link|flag
vote up 5 vote down

Javascript: OO and functional.

link|flag
Sorry, Accidentally voted down the wrong answer. :p – Rayne Jun 18 at 23:30
vote up 3 vote down

JavaScript, Python, and Ruby could be used that way, but Scala bumps up a notch by typing the function statically.

link|flag
1  
Python is a cool place to learn some FP principles. – Jared Updike Jun 18 at 23:24
2  
Why would anyone ever use Python to learn functional programming? :\ – Rayne Jun 18 at 23:26
vote up 2 vote down

You're really asking the wrong question. Your question is premised on there being a distinction between "OO" and "functional" programming. This distinction isn't interesting or relevant. In fact, according to the "supports first-class function" criteria, even Java is functional.

But you hit the nail on the head with "purely functional". That's the interesting bit. What languages offer you referential transparency and purity like that? Well, most of them, if you're very careful. But not many of them actually guarantee that your functions are pure. I can only think of a couple of languages that offer you that.

One of them is Haskell. In Haskell, you write programs that are purely functional from beginning to end. Side-effects are delegated to a data structure called IO, and state is handled by passing it through pure functions or encapsulating it in monads. So you have your "debugging heaven" where only a small portion of your code interacts with global state and the rest of your program is pure, and purity is enforced by the language.

link|flag
I'm not as concerned with purity as much as readability. I know that many languages support many programming styles but a language's syntax largely determines which style is widely accepted. I think Scala is the first I've seen that says, "We're trying to do both!" – Kai Jun 19 at 2:43
vote up 1 vote down

As long as you don't insist on "purity", Common Lisp supports all your needs.

link|flag
2  
Unless you need static typechecking. – Apocalisp Jun 19 at 6:44
I'm on the fence about Static vs Dynamic typing. I personally love Clojure, and Haskell. – Rayne Jun 21 at 18:13
Well, static typing and real object orientation are contradictory. You can't have everything. – Svante Jun 22 at 0:34
vote up 0 vote down

Ruby! In Ruby, everything is an object (even literals), and it also has full functional programming support.

link|flag
Everything being an object isn't necessarily OOP, is it? In JavaScript, just about everything is an object (including functions so you can do some functional programming stuff). – Nosredna Jun 18 at 23:03
...and JavaScript is also OO and functional... – DeadHead Jun 18 at 23:07
JavaScript is certainly object-centric, but when people say "promotes OOP," I think they're talking about classes. I know, the terminology is weird. BTW, JavaScript is my favorite language ever (due to its flexibility), so I'm not dissing it. – Nosredna Jun 18 at 23:11
1  
OO has nothing to do with classes. A lot of OO languages don't have classes: Smalltalk-71 (which is, after all, the language for which the term "OO" was invented), Self, Io, Ioke, ECMAScript (aka JavaScript), NewtonScript. Alan Kay has made it very clear that he considers having added classes to Smalltalk a mistake, and since he invented the term "object-oriented", we could even go so far as to say that languages with classes are not OO! – Jörg W Mittag Jun 18 at 23:21
1  
According to that list, Self (one of the most object-oriented languages ever invented), Simula (the first OO language ever), Smalltalk-71 (the language for which the term OO was invented), JavaScript, Io, Ioke and NewtonScript aren't OO, because they don't have classes. C++, Java, C# aren't OO because they don't have Message Passing. CLOS and Eiffel aren't OO because they don't have Methods. In fact, no language in existence today, with the exception of Oz, has these features. Are you claiming that Oz is the only OO language? – Jörg W Mittag Jun 19 at 9:42
show 2 more comments
vote up 0 vote down

C#. It's imperative, which can be handy, but also has a lot of functional features. Lambdas, iterators, and LINQ are all functional.

It probably won't appeal much to purists, but it works for me.

link|flag
Nice attitude there. – Rayne Jun 19 at 2:47
That last part was my idea of a joke. Generally I'm not one for "purisim". Aparrently, though some people took offense. – Scott Wisniewski Jun 19 at 4:05
I wasn't trying to offend anyone. – Scott Wisniewski Jun 19 at 4:06
I don't find it offensive (to anyone), but this has attracted a few "offensive" votes; I recommend you re-word the final point. Which is fairly pathetic (not of Scott, but on the part of the "offended"), as this post clearly isn't "offensive". But there we are. – Marc Gravell Jun 19 at 4:48
sigh I updated the post to something less "offensive". – Scott Wisniewski Jun 19 at 6:23
vote up 0 vote down

I'm wondering why you are looking for a language that specifically encourages mixing it up rather than just doing it anyway with a language that does functional programming and OO programming well? It could be easily brought into effect with Python, Ruby, Perl or similar interpreted languages. In addition C based OO languages tend to mix pure C with OO features, for example Objective C could easily be written in such a way should you choose.

EDIT: I have been made aware I'm incorrect, I've left this answer here incase someone can learn from my mistake - see comments.

link|flag
4  
Because trying to program functionally in a language like Python, is like trying mow 10 acres of land with a pair of scissors. – Rayne Jun 18 at 23:23
Yeah fair deal, it can be done but its not the ideal approach. I'm still not sure that C extension is that bad an idea though, I'm less familiar with c++ but the notion of doing such a thing in objective c doesn't seem that bad. You can program functional C to your hearts content and use objects too if you want, I can't see why c++ wouldn't do it easily. I think my stupidity might be blinding me ;) – Toby Jun 18 at 23:48
1  
How big are the scissors? – Nosredna Jun 18 at 23:51
1  
How is C or Objective-C functional? – Nosredna Jun 18 at 23:56
1  
@Nosredna Surgical small. – Rayne Jun 19 at 2:46
show 3 more comments

Your Answer

Get an OpenID
or

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