Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have written a program in clojure but some of the functions have no arguments. What would be the advantages of coding such functions as a "def" instead of a "defn" with no arguments?

share|improve this question

3 Answers

up vote 14 down vote accepted

defs are evaluated only once whereas defns (with or without arguments) are evaluated (executed) every time they are called. So if your functions always return the same value, you can change them to defs but not otherwise.

share|improve this answer
Ah, I did not know this, you saved me from some serious bugs! So if there is a def which accesses a reference it will never be recalculated? What about if the file is reloaded? – Zubair Dec 16 '10 at 17:29
def is reevaluated when the file is reloaded. – Abhinav Sarkar Dec 16 '10 at 17:58
It seems wrong to me to say that defn forms are reevaluated. As pointed out in other answers, defn resolves to def at macro expanding time, and they indeed are all evaluated only once at file load time. – skuro Oct 12 '11 at 9:13
@skuro -- I'm confused by this answer. Is it wrong? – Matt Fenwick Nov 3 '11 at 21:00
1  
@MattFenwick skuro's point is that defns are evaluated only once, just like every def - in this case, it defines a function. However, the body of the function defined may be evaluated any number of times. I don't think it's a useful distinction, but he's not saying anything false. – amalloy Dec 12 '11 at 2:06
user=> (def t0 (System/currentTimeMillis))
user=> (defn t1 [] (System/currentTimeMillis))
user=> t0
1318408644243
user=> t0
1318408644243
user=> (t1)
1318408717941
user=> (t1)
1318408719361
share|improve this answer
1  
thanks. this code example was worth more than a 1000 word description. – user693960 Aug 24 '12 at 17:10

(defn name ...) is just a macro that turns into (def name (fn ...) anyway, not matter how many parameters it has. So it's just a shortcut. See (doc defn) for details.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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