ruby hash方法_Ruby中带有示例的Hash.rehash方法
ruby hash方法
Hash.rehash方法 (Hash.rehash Method)
In this article, we will study about Hash.rehash Method. The working of the method can't be assumed because of it's quite a different name. Let us read its definition and understand its implementation with the help of syntax and program codes.
在本文中,我們將研究Hash.rehash方法 。 由于該方法的名稱完全不同,因此無(wú)法進(jìn)行假設(shè)。 讓我們閱讀其定義并在語(yǔ)法和程序代碼的幫助下了解其實(shí)現(xiàn)。
Method description:
方法說(shuō)明:
This method is a Public instance method and belongs to the Hash class which lives inside the library of Ruby language. This method works in a way that constructs a new hash object which is based on the current hash object values for individual keys. If there is a change introduced in the hash object after they are declared then this method will do a re-indexing of the keys in the hash. You will have to face a run time error if you are trying to invoke this function during the process of traversing the hash instance.
此方法是Public實(shí)例方法,屬于Hash類,它位于Ruby語(yǔ)言庫(kù)中。 此方法以構(gòu)造新哈希對(duì)象的方式工作,該對(duì)象基于單個(gè)鍵的當(dāng)前哈希對(duì)象值。 如果聲明了哈希對(duì)象后引入了更改,則此方法將對(duì)哈希中的鍵進(jìn)行重新索引。 如果在遍歷哈希實(shí)例的過(guò)程中嘗試調(diào)用此函數(shù),則將面臨運(yùn)行時(shí)錯(cuò)誤。
Syntax:
句法:
Hash_object.rehashArgument(s) required:
所需參數(shù):
This method does not require any arguments.
此方法不需要任何參數(shù)。
Example 1:
范例1:
=beginRuby program to demonstrate Hash.rehash method =enda = ["Satyam","Amisha"] b = ["Nikhil","Saksham"]hsh = {a=>"friends", b=>"friends"}puts "Hash elements are: #{hsh}"puts "Hash.rehash implementation"b[0]="Hrithik"puts "Hash after rehash: #{hsh.rehash}"Output
輸出量
Hash elements are: {["Satyam", "Amisha"]=>"friends", ["Nikhil", "Saksham"]=>"friends"} Hash.rehash implementation Hash after rehash: {["Satyam", "Amisha"]=>"friends", ["Hrithik", "Saksham"]=>"friends"}Explanation:
說(shuō)明:
In the above code, you can observe that you can rehash a hash object with the help of the Hash.rehash() method. We have inserted a new element inside the hash and replaced the current one. We got the result after rehashing the hash instance. This method is not creating changes in the original hash because this method is an example of non-destructive methods where the changes created by the method are not permanent.
在上面的代碼中,您可以觀察到可以借助Hash.rehash()方法重新哈希一個(gè)哈希對(duì)象。 我們?cè)诠1碇胁迦肓艘粋€(gè)新元素,并替換了當(dāng)前元素。 重新哈希哈希實(shí)例后,我們得到了結(jié)果。 此方法不會(huì)在原始哈希中創(chuàng)建更改,因?yàn)榇朔椒ㄊ欠瞧茐男苑椒ǖ氖纠?#xff0c;在該示例中,該方法創(chuàng)建的更改不是永久的。
Example 2:
范例2:
=beginRuby program to demonstrate Hash.rehash method =enda = ["Satyam","Amisha"] b = ["Nikhil","Saksham"]hsh = {a=>"friends", b=>"friends"}puts "Hash elements are: #{hsh}"puts "Hash.rehash implementation"hsh.each do |key,value| hsh.rehash endputs "Hash after rehash: #{hsh.rehash}"Output
輸出量
Hash elements are: {["Satyam", "Amisha"]=>"friends", ["Nikhil", "Saksham"]=>"friends"} Hash.rehash implementation rehash during iteration (repl):14:in `rehash' (repl):14:in `block in <main>' (repl):14:in `each' (repl):14:in `<main>'Explanation:
說(shuō)明:
In the above code, you can observe that when we are trying to rehash the hash instance during iteration then the method is throwing an exception named RuntimeError. This simply shows that you can’t rehash a hash during the process of iteration.
在上面的代碼中,您可以觀察到,當(dāng)我們嘗試在迭代過(guò)程中重新哈希該哈希實(shí)例時(shí),該方法將拋出一個(gè)名為RuntimeError的異常。 這僅表明您無(wú)法在迭代過(guò)程中重新哈希。
翻譯自: https://www.includehelp.com/ruby/hash-rehash-method-with-example.aspx
ruby hash方法
總結(jié)
以上是生活随笔為你收集整理的ruby hash方法_Ruby中带有示例的Hash.rehash方法的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: Java LineNumberReade
- 下一篇: 错误:使用printf()打印Hello