Programming Clojure 109
eldavojohn writes "Programming Clojure by Stuart Halloway was very near to the perfect book for me. It covers many things common to many Lisp languages while highlighting in moderate detail the things that make Clojure unique and worthy of some attention. The book spends a large amount of time dealing with the intricacies of interfacing fluidly with Java (down to a package rewrite inside a large project). This fits me perfectly as a Java programmer, and I now feel ready to experiment with peppering functional language capabilities into an object oriented language. The book also strives to show how to simplify multithreading through functional programming, which is good because I find multithreading in Java a serious headache that few are good at. Programming Clojure, released in May 2009, is currently the only book out there devoted to Clojure, and the introduction is written by the language's creator, Rich Hickey, who says, 'What is so thrilling about Stuart's book is the extent to which he "gets" Clojure.' The book earns its place on the Pragmatic Bookshelf by guiding the user through rewriting a part of Ant into a new build tool called Lancet — adding to the project what you just learned about Clojure at the end of each chapter." Keep reading for the rest of eldavojohn's review.
First, a lot of you are probably wondering what Clojure is and asking me why you should care at all about it. Well, Clojure is a functional programming (FP) language that runs on top of the extremely pervasive Java Virtual Machine and in doing so seems to offer a simpler way of multithreaded programming. It belongs to the family of languages that are Lisps and as a result this book covers a lot of remedial material that is common to other Lisp languages. If you're a serious lisp programmer, you'll be able to skip some of this book (the intro will guide you). Clojure has rarely been mentioned on Slashdot with the resulting comments revealing largely confusion or considering it a buzzword. It's going to be hard to write this review about the book instead of the language being that 99% of what I know about Clojure comes from this book. If you work through this book linearly, you must also use the command line read-eval-print loop (REPL) that, similar to Ruby's IRB, allows you to get hands on with Clojure and Halloway's examples. Programming Clojure | |
author | Stuart Halloway |
pages | 304 |
publisher | The Pragmatic Bookshelf |
rating | 8/10 |
reviewer | eldavojohn |
ISBN | 978-1-934356-33-3 |
summary | A firm definition of Clojure via examples coupled with the beginnings of actually programming Clojure. |
Both Hickey and Halloway are very active in Clojure development. In fact, Halloway has a video out on types and protocols, new developments in Clojure 1.2 since the book went to print. Halloway does a good job at providing examples, keeping the book pragmatic and showing you the "wrong" way before incrementally showing you how to correctly accomplish various goals in Clojure. But he loses two points on this review for two reasons. One is that he over evangelizes about Clojure. It would lend a lot more credibility to everything else he says if he would just relent and abstain a bit from painting Clojure as the best language for any task. This ties into my second point which is the fact that books on programming languages are supposed to give the reader two very valuable things: knowledge of when to use the language and knowledge of when not to use the language. Programming Clojure is lacking in the latter--this is not a unique problem as most books about a language really sell their language. All too often in my professional career I see a solution and think, "Wow, that really was not the right tool for the job." (I'm looking at you, Java) Clojure definitely has its strengths and weaknesses despite very little evidence of the latter in this book although I was directed to a QCon presentation where the author speaks more about where Clojure excels in real life.
That said, the book is a great fit for the object oriented Java developer who does not also code a lisp-like language regularly. I say that because Chapter Two deals with reviewing all of the facets of Clojure--most of which are found in other Lisp languages which might be seen as remedial to a proficient Lisp developer. However, before you skip it entirely, there are important notes that Halloway injects into these chapters ranging from how not to do things in Clojure to the minute differences and implications they hold. Chapter Five dives into the fundamentals and features of functional programming in Clojure. This chapter was especially useful to me as I'm not used to languages featuring things like lazy sequences, caching of results or tail-call optimization. Working through the examples in Chapter Five really opened my eyes to some of the more powerful aspects of FP. Like how an infinite sequence can easily be handled by Clojure and its laziness allows you to only pay for what you need from that sequence. While definitions of infinite sequences are also possible in Haskell or Python, Clojure brings this capability to the JVM (not that anything is preventing a more verbose Java library from handling such structures).
Chapter Three focuses a lot on Clojure's interaction with Java and does a great job of showing you how to rewrite part of your Java project into Clojure and run it on the JVM. This includes calling Java from Clojure, creating and compiling Clojure into java classes, handling Java exceptions in Clojure and ends with the beginning work in Lancet (the build tool the book strives to create using what we learn in each chapter). It also contains a bit on optimizing your performance when working with Java in Clojure. This theme continues through the book as Halloway knows that one of Clojure's main selling points is that it can be so much faster than Java if you're willing to put in the extra work and planning to utilize pure functional programming.
In Java, everything is an object. In Scheme, everything is a list. Well in Clojure, the main staple is sequences which brings us to Chapter Four: Unifying Data with Sequences. While this chapter succeeds in teaching how to load data into sequences, how to consume data from sequences and how to force evaluation of lazy sequences, it felt like one of the weakest chapters in the book. This is all necessary in learning Clojure but Halloway skimps on examples and could stand to add some more examples on what is and isn't seq-able, seq-ing on various things and performing functions on various things.
Multicore chips are all the rage these days. And right now it seems that developers are by and large content with coding single threaded applications. But that may change in the future when the user expects more than a few cores in usage. In the introduction, Halloway argues a few reasons why we all should use Clojure and one of those reasons happens to be the somewhat sound logic that we will all have cores coming out of our ears in the near future. That means that as a developer you have the option to spawn more threads which means coordination of threads which means you will be forced to do the dirty dance of concurrency. Chapter Six is entirely devoted to this and, honestly, I reread a lot of this chapter as there are several update mechanisms and models that you can use to manage concurrency in Clojure. Unsurprisingly there is no silver bullet for concurrency even in Clojure. This book has but a handful of figures and their formatting leaves much to be desired but the two in this chapter are necessary references for deciding if you should use refs and software transactional memory, atoms, agents, vars or classic Java locks. This is a potent chapter that ends with a snake game implementation in Clojure demonstrating some basic concurrency. While Clojure protects you from some classically complex issues and may make concurrency vastly more succinct, it still requires a lot of thought and planning. Halloway provides good direction but clearly hands on experience is a necessity in this realm.
Chapter Seven focuses entirely on macros and is somewhat disheartening in that it presents an extremely powerful feature of Clojure that is also very complex. Halloway gives two rules and an exception for Macro Club. The first rule is: "Don't Write Macros." The second rule is: "Write Macros if That Is the Only Way to Encapsulate a Pattern." The exception is you can also write macros if it makes calling your code easier. Halloway does a good job of explaining the basics of macros in Clojure and breaks them down via a taxonomy into categories and examples of macros in Clojure. Macros are a necessity when you're trying to augment Clojure by adding features to it or if you are creating a Domain-Specific Language (DSL). Macros in Clojure do seem easier than macros in most other Lisp languages. At the end of Chapter Seven, you create a basic DSL for Lancet which was helpful even though I was left feeling helpless in the face of macros. Despite the complexity of macros in Chapter Seven, Eight's multimethods are similar to Java polymorphism and was much easier to wrap my head around than macros. Multimethods are used very infrequently (seven times in the five thousand lines that compose the Clojure core).
Chapter Nine is unfortunately less than twenty pages and deals with "Clojure in the Wild." You would think that a book in the series of Pragmatic Programmer would have more pragmatism than the features of a language with Lancet but let's face it--Clojure is a relatively young language. Nine covers automated tests, data access and web development. The automated testing is a short section on Clojure's test-is packaging. The database stuff appears to be little more than wrappers around the already mature JDBC. The web development consists of an intro to Compojure which is similar to web.py and Sinatra. Compojure shows a lot of promise in reducing the amount of code one needs to write a basic web application. It lacks the feature set and support that Rails has with rapidly building CRUD applications but holds a lot of potential to be flushed out into something similarly powerful. Halloway says his introductions to these projects should "whet your appetite for the exciting world of Clojure development" but I think a more accurate description is that these brief brushes with functional projects leaves the reader ravenously blinded by hunger for more.
Some final thoughts on the book: I caught only two very minor typos in the book. It's all English and code. There were no pictures or illustrations in this book except for one on page 96 in which a tiny drawing appears named Joe who asks a question about vectors. Oddly enough, I didn't find Joe on any of the other three hundred pages. It was very easy to work through this book from cover to cover and the example code was very instrumental in my understanding of Clojure. As a Java monkey, rereading sections seemed a requirement although the book is concise enough for me to enjoy in my free time over one week. Halloway cites mostly websites and utilizes tinyurl to reference blogs like Steve Yegge's blog and frequently he references Wikipedia. Only three of his many citations are other printed books (although one of them is Gödel, Escher, Bach: An Eternal Golden Braid). Halloway's greatest strength is the engaging examples (like the Hofstadter Sequence) that he picks and provides to the user and I hope that future editions of the book build on this as well as expand on the growing base of Clojure projects out there. His github is rife with both instructive and pragmatic examples that could stand to be included in a future book.
Some final thoughts on the language: Clojure holds a lot of potential that is yet to be realized. I cannot say yet whether the succinct syntax offers a good balance between quick coding and readability. To the uninitiated, the code can look like a jumble of symbols. Yes, we escape the verbosity of Java and the kingdom of nouns but is what Clojure offers (a neighboring kingdom of verbs) better? While Clojure is concise, it requires a lot of keywords which required a lot of usage look up when starting. Clojure code is potent and powerful. A mere five thousand lines of Clojure code create your engine--the core of the language. I assume this brevity is due to ingenious reuse that Clojure can offer but I would hate to be the person to maintain that code if I was not the author. What's better is that this code is quickly conjured at the REPL if you wish to read it yourself or augment a feature. A sage coworker who has seen much more than I in this business of software development recommended Clojure to me. He was right that it is a very interesting and innovative language but in my opinion it has a long way to go before it becomes the next Ruby or Java. Clojure needs an equivalent to Ruby on Rails and it's fighting an uphill battle against all the developers like myself that left college with so much object oriented coding and so little functional programming (although Scheme is my alma mater's weed out course). If you find yourself stagnating and are thirsty for some continuing education in the form of a stimulating challenge, I recommend Clojure (and this book on Clojure). Hopefully Clojure's full potential is realized by the community and it finds its deserved place in many developer's tool sets as the right tool for some jobs.
You can find Programming Clojure in three DRM-free formats and hard copy from the publisher's site. For a sample of the author's writing and to get a feel for how he injects Clojure code into it, check out his blogs on his company's website.
You can purchase Programming Clojure from amazon.com. Slashdot welcomes readers' book reviews -- to see your own review here, read the book review guidelines, then visit the submission page.
on LISP (Score:1, Insightful)
Any sufficiently complex programming language will, over time, expand its features until it reinvents LISP.
Re: (Score:3, Funny)
...including Common Lisp.
Re: (Score:1)
http://clojure.org/rationale [clojure.org]
Re: (Score:3, Interesting)
Re: (Score:2)
Who here has ever heard of this "Clojure"?
Everybody who stays up to date with new languages and platforms. It's a modern Lisp designed for the JVM. As such it's part of the wave of new JVM languages (which includes Groovy, JRuby, Scale, Jython, etc).
Re: (Score:2)
The rallying cry of the army of idiots...
Those who do not understand Lisp - (Score:2)
are forced to reinvent it.
I presume that explains the existence of Clojure.
But hey, on top of Java. This now means your browser can run Lisp.
Re: (Score:3, Informative)
Re: (Score:2)
I assume you meant EcmaScript/JavaScript instead of Java. Which by the way has many Lisp like features.
Re: (Score:3, Interesting)
I've been looking into Clojure and the parenthesis vs. curly braces thing is one that stuck out to me. Braces define blocks and only blocks of code in most OO programming languages. Clojure's parenthesis enclose lists of data, defn functions (ignore redundancy in that), and practically everything besides vectors. So it's sometimes hard to tell where one logical block stands apart from another. Not to mention, the "recommended" indentation style feels counter-intuitive coming from an OO development backg
Re: (Score:3, Interesting)
Re: (Score:1)
Well, clojure's slightly changed syntax shows that there is a need for more visual structure. Our visual systems do not work like formal language parsers -- not necessarily the simplest (or more "elegant") syntax is the best. Also, the richness and complexity of natural languages indicate that (some) complexity is more natural to us.
Anyway, I tried many time to USE Lisp-like languages (scheme, clojure), but I ended up reverting to other languages. On the other hand, I use now Scala daily and moved almost al
Re: (Score:1)
Try Prolog :) . It's like Lisp with syntax.* (Seriously; however, as backtracking is built into the language, it can sometimes become annoying.) There's no really good Java implementation, but they all have Java bindings (the SWI Java interface is especially simple). As both Prolog and Java are garbage collected, there's much less boilerplate code than in a C interface.
Re: (Score:1)
I know prolog. I learned Prolog and SML at university. Currently I found Scala as a good compromise between pragmatism and purity.
Anyway, every year I try to learn a new language. Also, I like to write mini-languages (DSL's if you like buzzwords).
Re: (Score:2)
Javascript is Lisp badly disguised as C.
Re: (Score:2)
Re: (Score:3, Informative)
Re: (Score:3, Insightful)
So what, just write your own.
(define (car z)
(z (lambda (p q) p)))
(define (cdr z)
(z (lambda (p q) q)))
Re: (Score:1)
Re: (Score:2, Informative)
Re: (Score:2)
Re: (Score:2)
I just don't think that a language can be judged based on the names it uses for these things. It's not like they're hard to remember if you actually use Lisp and, in that regard, they are no different from a wide variety of other names in v
Re: (Score:2)
What meaning does Contents of Address portion of Register and Contents of Decrement portion of Register have for anyone?
I don't know, what meaning does Source Index, Destination Index and Base Pointer etc. have for anyone?
Re: (Score:1)
My other car is a cdr.
Re: (Score:2)
My other car is a cdr.
Well mine is a CDR-W.
Re: (Score:2)
Why is that a big deal?
(defun first (l) (car l))
(defun rest (l) (cdr l))
There. Was that so hard?
(first mylist)
(rest mylist)
Re: (Score:2)
Your rant is a bit misguided. Java is no worse at multithreading than anything else. The problem is with threading itself ("share everything"), versus multiprocessing ("share nothing").
Java is so heavily used on the server side that I'm pretty sure all new development could stop tomorrow, and there'd still be near-full employment for Java developers just doing code maintenance for the next 20 years.
It's spelled "millennium", by the way.
Re: (Score:1)
Java's intrinsic implementation of multithreading is one of hard mutual exclusion, which is awesome in a few ways, but really crappy if portability is your goal. Which it isn't, anymore, as I covered in my first post. The best thing that anyone can possibly say about Java's intrinsic multithread support is that it's ver
Re: (Score:2)
Java's strength in a multithreading context is due to the fact that multithreadedness was built into the language, and library authors and programmers have known to explicitly document what libraries are safe for multithreaded use and which are not.
Java the language provides just enough support (the Hoare Monitor and explicit memory model) to enable higher level thread-aware libraries, like the Java 5 concurrency classes.
Using those higher level classes can give you really good support, better than anything
Re: (Score:1)
Seems a bit weak for a strength to me.
Re: (Score:2)
To be honest, I have used lots of other languages to do multithreaded programming for many years - C++, C, and Python most recently. They all use critical sections etc. (ie mutual exclusion, as you mentioned) to hide stuff.
It's why I generally dislike threaded progamming - the "share everything" model is fundamentally wrong, in my opinion, which I mentioned in my original post. It sounds like you agree with this position.
I realise that other languages, like Erlang, use variants of the Actor pattern to excha
Re: (Score:2)
It's not "threading" that you're opposed to. Your actual position (which is very sensible) is that it's a bad idea to mix concurrency and shared memory. Erlang actors don't share memory with each other (at least at the Erlang level), which is why you say threading is okay in that instance. You can write a program
Re: (Score:1)
In Java there are other abstractions than threads, just look into the concurrent package.
Also, Clojure supports STM (Software Transaction Memory)
and Scala supports Actors
The thing is, that there is no silver bullet.
STM does not scale really well.
Actors' message passing, asynchronous nature will make even trivial code quite complex -- we implemented blocking calls for a reason!
Sometimes I just go back to plain old threads as they solve the problem better.
Re: (Score:2)
since Java is so piss-poor at multithreading
A good one. Tell that to the people from Azul. :)
Re: (Score:3, Interesting)
Re:My impression (Score:4, Informative)
Well, Clojure is a functional programming (FP) language that runs on top of the extremely pervasive Java Virtual Machine
I'll pass.
While FP permits some useful constructs (like Ruby's blocks), writing everything as a FP is a pain in the ass. Combining FP with Java cranks it up from mildly interesting albeit somewhat annoying to full-blown annoying.
Well, had you read a bit more ... or even read the summary ... you might have noticed that you can interact between Java and Clojure. To the point that -- as is pointed out in the book -- you could isolate packages in Java that have little "side effects" (meaning they are good candidates for pure functional programming) and you could optimize them from a functional standpoint. Which is hypothetically much much easier for some tasks. You do not have to write a whole project in Clojure to take advantage of this. I hope this was clear in my review.
Posting as anonymous because it's a knee jerk reaction.
You can say that again ...
I just can't stand the bloat associated with the JVM.
You might end up liking Clojure much more than you think. What if you didn't have any objects so that the garbage collector rarely (if ever) had to run? This is what Clojure could offer you with the platform pervasiveness and audience that comes with the bloated JVM.
Re: (Score:3, Insightful)
Any programming paradigm is a pain in the ass when used exclusively.
Procedural programming, with no OO features or first class functions available? Absolute pain in the ass.
Pure object-oriented programming, where you're not allowed to write simple procedural code for (say) OpenGL, but are forced to turn it all into objects? Absolute pain in the ass.
Pick the paradigm that suits the problem.
Re: (Score:1)
Exactly! Wery well said.
My problem is the people who always strive for some divine "elegance". If someone (especially an academic) calls something "elegant" you can be 99% sure that it is pain in the ass in practice.
- Elegant theorems are usually oversimplified -- therefore unusable in practice (at least in the original form)
- Elegant proofs are too compressed -- you are not able to learn from them, because the original ideas and failures of the prover got weeded out. They need a mental rev
Re: (Score:2)
It's not just Scala. It's the new mainstream. Java of all things is getting closures in v7 (see lambda-dev [java.net] mailing list for the ongoing discussion of the language changes).
On .NET front, closures have been there for 5 years now (since v2.0) in C#, and for 2 years in VB (!), and they come complete with type inference - where in Ruby you'd write something like xs.find_all {|x| x > 0}, in C# these days it's xs.Where(x => x > 0) - spot 10 differences... And then, of course, LINQ - which is just a fancy
Re: (Score:1)
Scala is uber-cool. I use it daily now -- I moved from Java 2-3 months ago.
However:
- tool support is very infant
- documentation sucks
- books and introduction materials concentrate on the shiny new things, not the day-by-day use. This can confuse newcomers as there is a lot of stuff to digest -- but you rarely use (although later you should learn).
Some Guidance (Score:1, Flamebait)
Re: (Score:2)
Clojure is worth a serious look (Score:2, Informative)
Re: (Score:2)
Re: (Score:2, Funny)
Re: (Score:1)
Coding in this language requires serious clojones?
http://www.instantrimshot.nl/ [instantrimshot.nl] Don't know about you guys, but I just hate this word, "clojure" - sounds like some mispelled word.
Asynchronous and self modifying code. (Score:2, Interesting)
In all seriousness there are two concepts are are especially onerous and difficult to do well in computer science:
1.) Asynchronous code (threads).
2.) Self modifying code (functional programming).
Both concepts are difficult for typical developers to get right. What the world needs is a revolutionary approach to these two topics such that average developers have the necessary tools to produce quality code for multi-core machines.
Someone needs to take design patterns to the concrete level and create design pat
Re: (Score:2)
http://en.wikipedia.org/wiki/Self_modifying_code#High_level_languages [wikipedia.org]
Some high level languages/ interpreters such as SNOBOL4, the Lisp programming language...
If one is really going to claim that Lisp is no more "self-modifying" than OO, I'd invite you to defend this on Wikipedia.
A good FP design dynamically creates and composes anonymous lamba functions on the fly, myself and professors at Berkeley would argue the very essence of FP. Never have I seen this spelled out as a requirement for OO.
If you really w
Re:Asynchronous and self modifying code. (Score:5, Informative)
You are mistaking how you use certain functional programming languages for what functional programming is.
There is no requirement that a functional language allow self modifying code, only that it is expressed as the composition of functions, is stateless and avoids mutable data.
Re: (Score:2)
FP without lambda functions, eh?
Re: (Score:2)
You seem to have this weird idea that lambdas == self-modifying code. It's just the opposite -- lambdas are the alternative to self-modifying code. Lambdas represent the ability for code to create other code, without having to modify any existing code. In fact
Re: (Score:2)
Permitting self-modifying code and requiring that are two different things entirely.
The possibility of self-modifying code is entailed in a language which allows code as data. That's not tantamount to self-modifying code either. Compilers take code as data and generate code as output but they aren't self-modifying.
Data formats are essentially special purpose programming languages. That's clear to anyone who's ever looked at a postscript file, but it's also true of things like word processing formats. T
Re: (Score:1)
"creating and composing anonymous lambda functions on the fly" is usually referred to as closing over lexically-scoped variables. It is certainly something that happens as a common idiom in functional languages, but it is *not* self-modifying code. It's more like creating an ad-hoc object that holds some data, and has an over-ridden "operator-()" (to use a C++ idiom).
Yes, many lisps can and do generate code at run-time. So do several object-oriented languages, like Smalltalk. There are many dialects of
Re: (Score:2)
If one is really going to claim that Lisp is no more "self-modifying" than OO, I'd invite you to defend this on Wikipedia.
GP is claiming that FP is no more self-modifying than OO. He is entirely correct - indeed, just looking at the list of languages, most FP ones are not self-modifying. Indeed, even large families of languages that are considered "stereotypically FP", such as ML, are not self-modifying.
There's a good reason for that, too. A large part of FP deals with advanced static typing systems, and it's damn tricky to combine that with dynamic code generation - how do you typecheck, then?
Also, ironically, the language th
Re:Asynchronous and self modifying code. (Score:4, Informative)
Re: (Score:2)
However, the introduction of macros breaks that in some sense. You can create the macro code, pass it as an argument, get a new function in return and evaluate it. Still purely functional? Perhaps, but "looks like a duck, quacks like a duck". It's self-modifying code the way I see it.
Can you point out the "modifying" party in your sequence of actions? Combining code (and data in general) is not the same as modifying it, you know...
It's funny. I once turned in an assignment (in assembly language) that used a small bit of self-modifying code. I thought it was an elegant approach to the given problem.
Back in the days which most /. readers (including myself) haven't seen, self-modifying code wasn't only normal, but effectively required. For example, some older Soviet mainframes had opcodes for array access, where the index was always a hardcoded integer - so, to write a loop that iterates over an array, you had to patch up the command that accesses array el
Re:Asynchronous and self modifying code. (Score:5, Informative)
2: functional programming and self modifying code have nothing to do with one another. functional programming transforms a set of inputs into a set of outputs without reference to any external state. It is a purely mathematical expression. Functional programming languages can be used to write self modifying code, but so can can most languages.
1: if you understand what you are doing, asynchronous programming is easy. All you have to do is prevent screwing up the shared state between threads. Since functional languages have no state to share, you can avoid 99% of the pitfalls of dealing with threading.
I deal with threading every single day. Problems occur when the problem is intractable (and then nothing can help it split), the solution is poorly designed (to much shared state), the language is poorly documented/designed (ambiguous thread safety, inability to be thread safe) or the developer just does not know what they are doing.
Functional programming is good at threading because it eliminates shared state completely. The question is no longer "can I split this, what do I have to rewrite from scratch, and will it be worth it?", but rather "will splitting this be worth the overhead of creating, context switching and synchronizing the threads?"
Abstracting multi-threading to make the syntax easier for inexperience developers is a mistake unless you can also fundamentally prevent most of the issues that make multi-threading a pain in the ass as well. Adding real closures to more traditional languages like c++, java, c# etc would go a long way towards making multi-threading easier to deal with because the vast majority of problematic code in relation to multi-threading will produce a compile error if used within a real closure.
Re:Asynchronous and self modifying code. (Score:4, Insightful)
This is the equivalent of saying lamda functions have nothing to do with functional programming.
Therein lies the rub and I'm glad you put it out there. Take any class of computer science students you wish and test them on asynchronous programming and synchronous programming. Guess which one will have the lower scores? Not for all people though, and presumably you are one of those for which asynchronous programming comes natural and easy too. Therein lies the rub. This concept also applies to functional programming vs imperative and came up in a code review I had recently for some Perl code. The reviewer asked my why I used "for loops" as opposed to "map". I never use map. I said because it has been proven time-and-time again that people do not understand "map" as well as they do "for loops", especially the side effects in Perl (not truly functional). There is no performance difference either way, but there is a human difference. I argue my code is more maintainable at the expense of a few lines of ASCII text. You have no idea if the person following you finds what you find to be understandable equally understandable and in the case of "map" using a for loop is trivial; the cost to me is nothing and the opportunity for maintainability greater.
Re: (Score:2)
> Not for all people though, and presumably you are one of those for which asynchronous programming comes natural and easy too. Therein lies the rub.
It's really easier to write multithreading code that works "most of the time" (than the ST counterpart.) What's difficult is to discover and avoid the potential race conditions; most people just assume it's ok if their 30 functional unit tests pass clean.
Re: (Score:1)
This is the equivalent of saying lamda functions have nothing to do with functional programming.
No it's not. The whole point of functional programming is to maintain referential transparency. It is literally impossible to modify a named value, including functions.
Self-modifying code is what you get when you make your imperative, referentially opaque code modify itself. You CANNOT do that in a pure language. Although purity isn't the gold standard in functional programming, it is a goal functional progra
Re: (Score:3, Insightful)
This is the equivalent of saying lamda functions have nothing to do with functional programming.
No, it's equivalent to saying that lambda functions have nothing to do with self-modifying code.
I'm not sure where this confusion of yours has arisen. Why would you think an anonymous function is self-modifying code?
Re: (Score:2, Insightful)
Asynchronous programming sucks big time (at least for programs that are beyond trivial). There is a reason for the idea of "blocking calls" -- it makes code much more readable. Although the asynchronous model leads to faster code.
I earn part of my money by doing Discrete-Event Simulations, which are by their nature much like Actors - everything is done through message passing, and asynchronously (i.e - no blocking calls).
It always make me twitch when people come and try to sell abstractions like STM or Acto
Re: (Score:2)
I also deal with threading every single day, and in C++, which is a poorly designed language as you describe it. But I don't have any problems with it, due to the following simple conventions:
Re: (Score:2)
If metaprogramming is self-modifying code, then every compiled program is self-modifying: there is no fundamental difference between translating a program to assembly and translating it to the same language in which it was written; if macros were inherently self-modifying, MACROEXPAND would be useless. If closures were self-modifying, then every C callback system that incorporated an opaque user-data parameter would also consist of self-modifying code.
In all my years*, I have seen no poster demonstrating a
Clojure's LISP does not enforce abstraction (Score:2)
Soem of the nice thing in Clojure like the rich set of set-notation are not LISP-specific. There is talk of
Re: (Score:3, Informative)
Re: (Score:2)
Clojure's approach to data is certainly not what an OO person would expect. In Clojure, *data* encapsulation is considered folly.
Wait, what? How can data encapsulation be "considered folly", in a language which is quite deliberately called "Clojure" - when closures are, perhaps, the most succinct way to tightly encapsulate data?
Just close over some scoped variables, and return the closure from that scope [wordpress.com] - and there's your encapsulation!
In fact, this technique is widely practiced in JavaScript today for exact same purpose.
Re: (Score:1)
Re: (Score:1)
In my experience with functional languages, the trouble isn't remembering what you coded, but where you put it. Reading functional programming is really easy. You barely even have to understand the operators, as long as you understand that a (mathematical) function is a certain type of relation (a many-to-one relation). Equivalently, a function is the same as a set of ordered pairs with the property that if (x,y) and (x', y') are in the set, and x = x', then y = y'. Equivalently a (computable) function
"This fits me perfectly as a Java programmer," (Score:4, Interesting)
Exactly. That was the big problem I had with the book: it's written for Java programmers. I am intrigued by the language, but I would much prefer a book that treats the language on its own terms.
Re: (Score:3, Informative)
Re: (Score:1)
My biggest problem with the book was that it doesn't explain what exactly the problem is that clojure solves. (Or attempts to solve.)
Why shouldn't I stick with one of the already existing functional languages for functional programming? Why shouldn't I stick with Java (or any of the other JVM-languages) if I need access to the reams of Java classes that already exist? Why not use Erlang if you're thread-paranoid? And so on. Nothing wrong with a new shiny language, but please explain why it is better than t
Functional programming, JFYI (Score:1, Redundant)
Re: (Score:2)
Well the code's there, it's not just going to disappear if Oracle abandons it. And it's free. So if it meets people's needs then there's no reason they should refuse to use it just because it's no longer supported.
Re: (Score:1, Insightful)
An excellent troll attempt, except you sound too much like twitter talking about "M$".
Re: (Score:3, Informative)
Can you provide some evidence to back this theory?
Sure, no one knows what Oracle is going to do here except Larry Ellison, but that isn't stopping Java development.
Android?
IBM?
There's already Apache Harmony, and IBM has their JDK. If the Sun/Oracle JVM goes away, it's not the end of the world. As a matter of fact, that would probably be a *good* thing. Java has languished behind C# and .NET in terms of language features (you can argue all you want if they're useful or not), and JDK7 is still a pipe dream
Re: (Score:1, Informative)
But nobody sane is going to build extensions to Java on their own. Without Sun, there's nobody in charge of developing the Java language. It's going to be a long time before it progresses, and the far more likely result is that it will shrivel and die. Good riddance. Dalvik can be adapted to run other languages, and everyone will move on.
Re: (Score:2)
Sure, no one knows what Oracle is going to do here except Larry Ellison
I admire your confidence...
Re: (Score:2)
Re: (Score:2)
Re: (Score:2)
Re: (Score:2)
Everything's on its way out. As a society we go through programming languages faster than socks. If you only target "in" languages, you will be spending more time learning than doing. Most languages are "good enough" to get the job done. Stop chasing shiny new features that may improve productivity by 2%, if you are lucky, and when you master it, you'll find it's time to retire anyhow.
Re: (Score:1)
If you go meta, then a dynamic language is generally the smoother route. But there are ways to adjust in static languages. The devil's in the details.
Re: (Score:1)
Go, use Scala, and you can use functors instead of factories whenever you want.