Project

General

Profile

Actions

Bug #2004

closed

Setting Hash default to an array hides the hash keys

Added by totoro (Alan Stebbens) over 14 years ago. Updated about 13 years ago.

Status:
Rejected
Assignee:
-
ruby -v:
ruby 1.8.7 (2008-08-11 patchlevel 72) [i686-darwin9.5.0]
[ruby-core:25157]

Description

=begin
Setting the default value of a hash to an array causes the keys and values methods results to be empty.

It may be counter-intuitive and not actually useful, but the assignment of the default value to an array causes all values to be same array object.

So, the little sums and subtractions end up applying to the same array object, no matter what the hash key is.

However, even though the hash keys and values appear to be empty, they are clearly still there.

% cat bug1.rb
#!/usr/bin/env ruby

h = Hash.new [0, 0]
d = ['a', 'b', 'c']
puts h

d.each_with_index{|k,x|
h[k][0] += x
h[k][1] -= x
}

puts "h.inspect = #{h.inspect}"
puts "h.keys = #{h.keys.inspect}"
puts "h.values = #{h.values.inspect}"

d.each{|k| puts "#{k} = #{h[k].inspect}"}


$ ruby bug1.rb

h.inspect = {}
h.keys = []
h.values = []
a = [3, -3]
b = [3, -3]
c = [3, -3]
=end


Files

bug1.rb (277 Bytes) bug1.rb bug1.rb totoro (Alan Stebbens), 08/27/2009 01:26 PM
good1.rb (302 Bytes) good1.rb good1.rb totoro (Alan Stebbens), 08/27/2009 01:35 PM

Related issues 1 (0 open1 closed)

Has duplicate Backport187 - Bug #2006: Setting Hash default to an array hides the hash keysRejected08/27/2009Actions
Actions

Also available in: Atom PDF

Like0
Like0Like0Like0Like0Like0