clear()是一种哈希类方法,可从其中删除所有哈希元素。
用法:Hash.clear()
参数:散列清除
返回:哈希已清除所有元素
示例1:
# Ruby code for clear() method
# declaring Hash value
a = {a:100, b:200}
# declaring Hash value
b = {a:100, c:300, b:200}
# declaring Hash value
c = {a:100}
puts "clear a : #{a.clear()}\n\n"
puts "clear b : #{b.clear()}\n\n"
puts "clear b : #{c.clear()}\n\n"
输出:
clear a : {} clear b : {} clear b : {}
示例2:
# Ruby code for clear() method
# declaring Hash value
a = { "a" => 100, "b" => 200 }
# declaring Hash value
b = {"a" => 100}
# declaring Hash value
c = {"a" => 100, "c" => 300, "b" => 200}
puts "clear a : #{a.clear()}\n\n"
puts "clear b : #{b.clear()}\n\n"
puts "clear b : #{c.clear()}\n\n"
输出:
clear a : {} clear b : {} clear b : {}
相关用法
- Ruby Hash each()用法及代码示例
- Ruby Hash eql?用法及代码示例
- Ruby Hash any?()用法及代码示例
- Ruby Hash dig()用法及代码示例
- Ruby Hash key()用法及代码示例
- Ruby Hash key?()用法及代码示例
- Ruby Hash to_s()用法及代码示例
- Ruby Hash has_key?()用法及代码示例
- Ruby Range hash()用法及代码示例
- Ruby Hash include?()用法及代码示例
- Ruby Hash values用法及代码示例
- Ruby Hash inspect()用法及代码示例
- Ruby Hash invert()用法及代码示例
- Ruby Regexp hash()用法及代码示例
- Ruby Hash merge!用法及代码示例
注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Ruby | Hash clear() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。