Project

General

Profile

Actions

Bug #2006

closed

Setting Hash default to an array hides the hash keys

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

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

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:32 PM
good1.rb (302 Bytes) good1.rb good1.rb totoro (Alan Stebbens), 08/27/2009 01:35 PM

Related issues 1 (0 open1 closed)

Is duplicate of Backport186 - Bug #2004: Setting Hash default to an array hides the hash keysRejected08/27/2009Actions
Actions #1

Updated by totoro (Alan Stebbens) over 14 years ago

=begin
This is the same code, except without an array default value (using code to initialize a default for each key):

$ cat good1.rb
#!/usr/bin/env ruby

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

d.each_with_index{|k,x|
h[k] = [0,0] unless h.key? k
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 good1.rb

h.inspect = {"a"=>[0, 0], "b"=>[1, -1], "c"=>[2, -2]}
h.keys = ["a", "b", "c"]
h.values = [[0, 0], [1, -1], [2, -2]]
a = [0, 0]
b = [1, -1]
c = [2, -2]

=end

Actions #2

Updated by marcandre (Marc-Andre Lafortune) over 14 years ago

  • Category set to core
  • Status changed from Open to Rejected

=begin
Closing since this it the official behavior, as explained in detail in Hash.new, #default and #default=
=end

Actions

Also available in: Atom PDF

Like0
Like0Like0