Ruby中的Hash雜湊類型基本操作方法小結_ruby專題

來源:互聯網
上載者:User

1.建立雜湊:就像建立數組一樣,我們可以通過Hash類來建立一個Hash執行個體:

h1 = Hash.new             #預設值為nilh2 = Hash.new(“This is my first hash instance”) #預設值為” This is my first hash instance”:

上面兩個例子都建立了一個空的Hash執行個體。一個Hash對象總是有一個預設的值——因為如果在一個Hash對象裡沒有找到指定的索引(key),將會返回預設值。
建立了Hash對象後,我們就可以像數組那樣給他添加/刪除項了。唯一不同的是,在數組中的索引只是能整數,而在Hash中索引(key)可以是任何類型(any type of object)且唯一的資料:

h2["one"] = "北京"h2["two"] = "上海"h2["three"] = "深圳"h2["four"] = "廣州"

Note: 如果在給Hash賦值時,使用的相同的key,那麼後面的值會覆蓋掉前面的值。另外,Ruby還提供了一種方便的建立和初始化Hash的方法,只需要在key後面加一個=>符號並跟一個值即可。每個key-value對用逗號隔開。然後整體用大括弧括起來:

h2 = {"one" => "北京","two" =>"上海","three" =>"深圳","four" =>"廣州" }

 
2.通過索引存取Hash的值:
要想擷取某個值,可以用下面的方法:

  puts h2[“one”]    #=>”北京”

如果指定的key不存在,將返回預設的值(前面有提到過)。此外,我們還可以用default方法擷取預設值,用default+=方法設定預設值

    puts h1.default    h1.default += “This is set value method”

 
3.複製Hash:
和數組一樣,我們可以把一個Hash變數分配給另一個hash變數,它們都引用想同的Hash,所以如果其中一個的值變了,那麼另外一個的值也會跟著變:

  h3 = h2  h3[“one”] = “西安”  puts h h2[“one”]    #=>”西安”

有的時候我們不希望上面的情況發生,即:修改了其中一個的值另一個也跟著修改了,我們可以使用clone方法make a new copy

  h4 = h2.clone  h4[“one”] = “大連”  puts h2[“one”]       #=>”西安”(i.e. 值沒有修改)

 
4.Hash排序:
當我們需要對Hash進行排序時,不能像數組那樣簡單的使用sort方法,因為數組中的資料類型都是一樣的(整型),Hash中的資料類型可能並不完全一樣,如整數類型和字串類型就沒法一起排序,此時就需要我們進行處理,如下(如果Hash中的資料類型全部相同可以不進行如下處理):

  def sorted_hash(aHash)    return aHash.sort{      |a,b| a.to_s <=> b.to_s          }  Endh1 = {1=>'one', 2=>'two', 3=> 'three'}h2 = {6=>'six', 5=>'five', 4=> 'four'}h3 = {'one'=>'A', 'two'=>'B','three'=>'C'}h4 = h1.merge(h2)      #合并hashh5 = h1.merge(h3)def sorted_hash(aHash) return aHash.sort{|a,b| a.to_s <=> b.to_s }endp(h4)     p(h4.sort)p(h5)p(sorted_hash(h5))

結果

{5=>"five", 6=>"six", 1=>"one", 2=>"two", 3=>"three", 4=>"four"}[[1, "one"], [2, "two"], [3, "three"], [4, "four"], [5, "five"], [6, "six"]]{"two"=>"B", "three"=>"C", 1=>"one", 2=>"two", "one"=>"A", 3=>"three"}[[1, "one"], [2, "two"], [3, "three"], ["one", "A"], ["three", "C"], ["two", "B"]]

 
事實上Hash的sort方法是把一個Hash對象轉換成以[key,value]為單個元素的一個數組,然後再用數組的sort方法進行排序。

5.Hash類常用方法:

方法

說明

size()

返回Hash對象的長度

length()

返回Hash對象的長度

include?(key)

判斷指定的Hash對象是否包含指定的key

has_key?(key)

判斷指定的Hash對象是否包含指定的key

delete(key)

刪除Hash對象中指定key的對應元素

keys()

返回由Hash對象中全部key組成的數組

values()

返回由Hash對象中全部value組成的數組


e.g.

  student = {     "name" => "Steve",     "age" => 22,     "Gender" => "male"    }    p student.keys              #=> ["name", "Gender", "age"]  p student.values             #=> ["Steve", "male", 22]  puts student.include?("age")         #=> true  puts student.size             #=> 3  student.delete("Gender")  puts student.has_key?("Gender")       #=>false  puts student.size             #=>2

6.Hash的轉換使用
在處理嵌套了幾層的hash時,總是感覺很混亂,讀取、修改時都很麻煩。因此想到把hash轉換為對象,直接產生key的get/set方法,代碼如下:

class HashObj class << self def load_from_hash(hash)  if hash.instance_of? Hash  obj = HashObj.new  hash.each{|k,v| obj.send :def_sget_method,k,HashObj.load_from_hash(v)}  obj  elsif hash.instance_of? Array  hash.map{|m| HashObj.load_from_hash(m) }  else  hash  end end end def attributes hash = {} @@reg ||= /=/ self.singleton_methods.reject{|x| @@reg =~ x.to_s}.each do |m|  v = self.send(m)  if v.instance_of? HashObj  real_v = v.attributes  elsif v.instance_of? Array  real_v = []  v.each do |l|   if l.instance_of? HashObj   real_v << l.attributes   else   real_v << l   end  end  else  real_v = v  end  hash[m] = real_v end hash end protected def def_sget_method(name,val) self.instance_variable_set "@#{name}",val self.define_singleton_method "#{name}=" do |n_val|  instance_variable_set "@#{name}",n_val end self.define_singleton_method name do  instance_variable_get "@#{name}" end endend

使用demo

hash = {name:'jack',age:22,phone:['61900871','8787876'],    basic_info:{country:'USA',city:'New York'}}obj = HashObj.load_from_hash hashobj.name #'jack'obj.age  #22obj.phone #['61900871','8787876']obj.basic_info #<HashObj:0x007f9eda02b360 @country="USA", @city="New York">obj.basic_info.country #'USA'obj.attributes == hash #trueobj.age = 30obj.attributes #{:name=>"jack", :age=>30, :phone=>["61900871", "8787876"],# :basic_info=>{:country=>"USA", :city=>"New York"}}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.