Usage of integers as hash keys

RubyHashmap

Ruby Problem Overview


Is it appropriate to use integers as keys in a Ruby hash?

Every example from documentation shows a string or symbol being used as a key, but never an integer.

Internally, would integers somehow get converted to strings? I have seen some conflicting information on the subject.

In other words, is there any significant disadvantage to using integer keys to a hash?

Ruby Solutions


Solution 1 - Ruby

Others looking at the answers here might find it interesting to know that an exception happens when you use integers as symbol keys in a Ruby hash {symbol: value}

hash = {1: 'one'} # will not work  
hash = {1 => 'one'} # will work

Requested Explanation:

The simplest answer for why the first example fails is probably that to_sym is not a method that's been implemented for Fixnum integers.

To go more in depth to maybe explaining why that is, one of the main benefits to using symbols is that two symbols are in fact "the same object". Or at least they share the same object ids.

:foo.object_id == :foo.object_id
=> true

Strings that are the same do not share the same objects, and therefore do not share the same object ids.

"foo".object_id == "foo".object_id
=> false

Like symbols, Fixnum integers that are the same will have the same object ids. Therefore you don't really need to convert them into symbols.

one = 1
=> 1
uno = 1
=> 1
one.object_id
=> 3
one.object_id == uno.object_id
=> true

Solution 2 - Ruby

of course you can use integers as keys...

h = {1 => 'one', 2 => 'two', 3 => 'three'}

(1..3).each do |i|
  puts h[i]
end
 

=>

one
two
there

irb is your friend! try it..


In fact you can use any Ruby object as the key (or the value). We usually don't think about using Hashes like this, but it could be quite useful.

Edit: As Óscar López points out, the object just has to respond to .hash for it to work as a key in a Ruby Hash.

Solution 3 - Ruby

The only requirement for using an object as a hash key is that it must respond to the message hash with a hash value, and the hash value for a given key must not change. For instance, if you call this:

1.hash()

You can see that the number 1 indeed responds to the hash message

Solution 4 - Ruby

There are already answers about the is it possible?.

An explanation, why there are no examples with integers as Hash-keys.

Hash-keys have (most of the times) a meaning. It may be an attribute name and its value (e.g. :color => 'red'...).

When you have an integer as a key, your semantic may be 'first, second ...' (1). But then you don't use a hash, but an array to store your values.

(1) A counterexample may be a foreign key in a database.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestiontimponeView Question on Stackoverflow
Solution 1 - RubydylankbView Answer on Stackoverflow
Solution 2 - RubyTiloView Answer on Stackoverflow
Solution 3 - RubyÓscar LópezView Answer on Stackoverflow
Solution 4 - RubyknutView Answer on Stackoverflow