I'm new to Clojure and finding my sea legs. I was wondering whether it is considered good or bad practice, from a functional programming standpoint, to put functions in Clojure maps and then pass those maps around like quasi-objects, as is often done in JavaScript. Explanations will also be appreciated.
|
|
Clojure's multimethods are essentially maps of functions, so no, it's not a bad idea at all. |
|||
|
|
|
Do it, if it makes your code shorter or easier to understand, or test, or debug. Or if you'd just like to. Trust your judgement. |
|||
|
|
|
It would be bad because of several reasons:
Long story short, if you're using Clojure to do OOP, you'll only get annoyed. You can do OOP more easily in tons of other languages, like say Groovy. If you do want to use Clojure do it the functional way. So far I wrote not to do it and why not to do it. Now you might ask me: So, how should I write functions in Clojure? Write functions that take your data structure (i.e. a map, list, object... whatever) as a parameter. So, instead of:
You would define it like this:
And call it like this:
Now, for a pure function Also, it may look like a small difference, but note that the |
|||||||
|
|
It works - and in some sense it's natural if you consider functions as first-class objects in the language (as all functional programmers should!) However - it needs real care because what you're basically doing is interleaving code with data. It's rather like mixing your data model with presentation code in MVC. Yes, there may be some situations where it makes sense but the general principle would be to avoid it. The style I'm slowly converging towards after about a year of Clojure is:
This solves most things under the sun, the one thing I'm still trying to figure out is the best way to create objects with highly polymorphic behaviour. Main options I can see are:
Still haven't worked out which way to go..... but I have a hunch that functions may sneak into maps a bit more in the future.... |
|||
|
|
|
If you really need to do object oriented programming in Clojure there are a couple of ways to do so. The first way is to use the The second way is to use multimethods, combined with a map or record type for data storage. The third way is to use the universal design pattern as outlined by Steve Yegge, or a more Clojure specific introduction can be found in Chris Houser and Michael Fogus' book The Joy of Clojure. The third approach is very similar to what you would expect to see in JavaScript, and the first approach, while not thought of as OOP in a traditional sense, is the most common in "modern" idiomatic Clojure. |
|||||
|
|
Namespaces are literally maps of functions. It's much more straightforward to use them to organize your functions. However, if you run into a limitation of namespaces for your use case, you could consider putting functions in a map. As usual when going off the beaten track, just be sure to think hard about why you're not going the obvious route. |
|||
|
|