在Ruby中,空哈希是一个没有任何键值对的哈希。处理空哈希的方法有很多,这里列举一些常见的操作:
hash = {}
或者使用Hash.new
方法创建一个空的哈希,指定默认值(可选):
hash = Hash.new(0)
if hash.empty?
puts "The hash is empty."
else
puts "The hash is not empty."
end
hash["key"] = "value"
value = hash["key"]
puts value
如果键不存在,将返回nil
。
hash.delete("key")
if hash.key?("key")
puts "The key exists in the hash."
else
puts "The key does not exist in the hash."
end
size = hash.size
puts size
hash.each do |key, value|
puts "Key: #{key}, Value: #{value}"
end
other_hash = {"key2" => "value2"}
hash.merge!(other_hash)
hash_array = hash.to_a
这些操作适用于任何哈希,包括空哈希。