开发者

Usage of integers as hash keys

开发者 https://www.devze.com 2023-04-12 02:40 出处:网络
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.

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.

Inter开发者_StackOverflow中文版nally, 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?


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


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.


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


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号