When I say { :bla => 1, :bloop => 2 }, what exactly does the : do? I read somewhere about how it's similar to a string, but somehow a symbol.
I'm not super-clear on the concept, could someone enlighten me?
|
|
This makes comparing two symbols really fast (since only a pointer comparison is involved, as opposed to comparing all the characters like you would in a string), plus you won't have a zillion copies of the same symbol floating about. Also, unlike strings, symbols are immutable. |
|||
|
|
|
Symbols are a way to represent strings and names in ruby. The main difference between symbols and strings is that symbols of the same name are initialized and exist in memory only once during a session of ruby. They are useful when you need to use the same word to represent different things |
|||
|
|
|
Just to demonstrate some of the things mentioned in the answers:
Running it outputs:
So, comparing a string to a string using
Both symbol tests are basically the same as far as speed. After 1,000,000 iterations there's only 0.004733 second difference, so I'd say it's a wash between which to use. |
|||
|
|
|
If you are familiar with Java, you might be aware that Strings in Java are immutable. Symbols are similar in that sense in Ruby. They are immutable, i.e., any number of occurances of a particular symbol |
|||||||||
|
|
It's a symbol. Basically, you are saying that the two elements of the hash have keys |
|||
|
|