Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm referring to this test in about_symbols.rb in Ruby Koans https://github.com/edgecase/ruby_koans/blob/master/koans/about_symbols.rb#L26

def test_method_names_become_symbols
  symbols_as_strings = Symbol.all_symbols.map { |x| x.to_s }
  assert_equal true, symbols_as_strings.include?("test_method_names_become_symbols")
end


  # THINK ABOUT IT:
  #
  # Why do we convert the list of symbols to strings and then compare
  # against the string value rather than against symbols?

Why exactly do we have to convert that list into strings first?

share|improve this question
Please provide a link to the koan, so that we can see the larger context. – Andrew Grimm Jan 13 '11 at 22:38
Just added a link. Thanks for your suggestion! – codercode Jan 13 '11 at 22:40

2 Answers

up vote 46 down vote accepted

This has to do with how symbols work. For each symbol, only one of it actually exists. Behind the scenes, a symbol is just a number referred to by a name (starting with a colon). Thus, when comparing the equality of two symbols, you're comparing object identity and not the content of the identifier that refers to this symbol.

If you were to do the simple test :test == "test", it will be false. So, if you were to gather all of the symbols defined thus far into an array, you would need to convert them to strings first before comparing them. You can't do this the opposite way (convert the string you want to compare into a symbol first) because doing that would create the single instance of that symbol and "pollute" your list with the symbol you're testing for existence.

Hope that helps. This is a bit of an odd one, because you have to test for the presence of a symbol without accidentally creating that symbol during the test. You usually don't see code like that.

share|improve this answer
2  
Great answer. Oddly, the very next koan leads you down a path to that very trap, without really warning you about it - it has the code "all_symbols.include?(__)" which (because of the issue noted above) always evaluates to true no matter what symbol you stick inside the parentheses. – Bruce Sep 23 '11 at 21:09
Note that a better way of doing this safely is to assign the output of Symbol.all_symbols to a variable, then test for inclusion. Symbols are faster at comparison, and you're avoiding converting thousands of symbols into strings. – coreyward Nov 28 '11 at 17:49
2  
That still has the problem of creating the symbol which can't be destroyed. Any future tests for that symbol will be ruined. But this is just a Koan, it doesn't have to make much sense or be fast, just demonstrate how symbols work. – AboutRuby Nov 29 '11 at 10:50
This answer doesn't work for me. If we're searching for existence of a symbol, why are we specifying a string argument to include? If we specified :test_method_names_become_symbols we wouldn't have to convert all those symbols to strings. – Isaac Rabinovitch Dec 31 '12 at 1:50
Isaac, because of the issue identified, which is that specifying :test_method_names_become_symbols in the comparison will create it, so the comparison will always be true. By converting all_symbols to strings and comparing strings, we can distinguish whether the symbol existed prior to the comparison. – Stephen Feb 22 at 7:32

Because if you do

assert_equal true, all_symbols.include?(:test_method_names_become_symbols)

it may (depending on your ruby implementation) automatically be true, because asking about :test_method_names_become_symbols creates it. See this bug report.

share|improve this answer
Alright, thanks a lot! – codercode Jan 13 '11 at 22:43
So the accepted answer is the wrong one (or so it seems to me). – Isaac Rabinovitch Dec 31 '12 at 1:54
Isaac, the other answer isn't wrong but it's not explained as concisely. for sure. Anyway, you can verify what Andrew's saying with the following: assert_equal true, Symbol.all_symbols.include?(:abcdef) This will always pass (at least, it does for me) regardless of the symbol. I guess one lesson is, don't try to use the presence/absence of symbols as a boolean flag. – Stephen Feb 22 at 7:18

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.