web-dev-qa-db-ja.com

ハッシュ内にハッシュを作成する方法

ネストされたハッシュにそれを識別するためのキーがあり、ハッシュ内にハッシュを作成するにはどうすればよいですか。また、ネストされたハッシュで作成する要素、それらのキーを取得するにはどうすればよいですか?

例えば

test = Hash.new()

#create second hash with a name?? test = Hash.new("test1")??
test("test1")[1] = 1???
test("test1")[2] = 2???

#create second hash with a name/key test = Hash.new("test2")???
test("test2")[1] = 1??
test("test2")[2] = 2??

ありがとうございました

12
paul
my_hash = { :nested_hash => { :first_key => 'Hello' } }

puts my_hash[:nested_hash][:first_key]
$ Hello

または

my_hash = {}  

my_hash.merge!(:nested_hash => {:first_key => 'Hello' })

puts my_hash[:nested_hash][:first_key]
$ Hello
21
Joel AZEMAR

Joel'sは私がすることですが、これを行うこともできます。

test = Hash.new()
test['test1'] = Hash.new()
test['test1']['key'] = 'val'
18
glortho
h1 = {'h2.1' => {'foo' => 'this', 'cool' => 'guy'}, 'h2.2' => {'bar' => '2000'} }
h1['h2.1'] # => {'foo' => 'this', 'cool' => 'guy'}
h1['h2.2'] # => {'bar' => '2000'}
h1['h2.1']['foo'] # => 'this'
h1['h2.1']['cool'] # => 'guy'
h1['h2.2']['bar'] # => '2000'
5
Kudu