Possible Duplicate:
Why use symbols as hash keys in Ruby?
Just wondering what's the difference?
ruby[:key]
vs:
ruby["key"]
Just wondering what's the difference?
vs:
|
|||||||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Your question isn't about hashes. Your question is really:
To which the answer is, the first is a string, the second is a Symbol. What's a Symbol? It's a class peculiar to Ruby. Read "The Ruby_Newbie Guide to Symbols ". The relevant property of Symbols is that:
Thus Symbols are popular as hash keys, to save memory and make comparison faster. |
||||
|
|
|
|
|||||
|