Why does the second assert_equal below work? How does ruby associate "dos" with :two?

  def test_default_value

    hash2 = Hash.new("dos")
    hash2[:one] = 1

    assert_equal 1, hash2[:one]
    assert_equal "dos", hash2[:two]
  end
link|improve this question

feedback

1 Answer

up vote 7 down vote accepted

The argument to Hash.new is the "default" value - when a key isn't present, and is read, return that value instead. You can also pass a block to Hash.new to have more complex behaviour around default values.

http://ruby-doc.org/core-1.8.7/Hash.html#method-c-new

link|improve this answer
Thank you very much! – Nathan C. Tresch Feb 1 at 23:19
Also note that it returns the same value each time, so using a default value of a string (which is mutable) is unwise. At the very least, you'd want to freeze it. – Joshua Cheek Feb 2 at 4:55
feedback

Your Answer

 
or
required, but never shown

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