本文簡要介紹ruby語言中 ENV.to_h
的用法。
用法
to_h → hash of name/value pairs
to_h {|name, value| block } → hash of name/value pairs
沒有塊,返回一個 Hash
包含來自 ENV 的所有名稱/值對:
ENV.replace('foo' => '0', 'bar' => '1')
ENV.to_h # => {"bar"=>"1", "foo"=>"0"}
對於一個塊,返回一個 Hash
,其項目由塊確定。 ENV
中的每個名稱/值對都交給塊。該塊必須返回一個 2 元素 Array
(名稱/值對),它作為鍵和值添加到返回 Hash
:
ENV.to_h { |name, value| [name.to_sym, value.to_i] } # => {:bar=>1, :foo=>0}
如果塊不返回數組,則引發異常:
ENV.to_h { |name, value| name } # Raises TypeError (wrong element type String (expected array))
如果塊返回錯誤大小的 Array
,則引發異常:
ENV.to_h { |name, value| [name] } # Raises ArgumentError (element has wrong array length (expected 2, was 1))
相關用法
- Ruby ENV.to_hash用法及代碼示例
- Ruby ENV.to_s用法及代碼示例
- Ruby ENV.to_a用法及代碼示例
- Ruby ENV.empty?用法及代碼示例
- Ruby ENV.delete_if用法及代碼示例
- Ruby ENV.inspect用法及代碼示例
- Ruby ENV.delete用法及代碼示例
- Ruby ENV.clear用法及代碼示例
- Ruby ENV.length用法及代碼示例
- Ruby ENV.key用法及代碼示例
- Ruby ENV.reject用法及代碼示例
- Ruby ENV.values用法及代碼示例
- Ruby ENV.select!用法及代碼示例
- Ruby ENV.freeze用法及代碼示例
- Ruby ENV.rassoc用法及代碼示例
- Ruby ENV.invert用法及代碼示例
- Ruby ENV.value?用法及代碼示例
- Ruby ENV.select用法及代碼示例
- Ruby ENV.each_key用法及代碼示例
- Ruby ENV.reject!用法及代碼示例
- Ruby ENV.keys用法及代碼示例
- Ruby ENV.include?用法及代碼示例
- Ruby ENV.each_value用法及代碼示例
- Ruby ENV.except用法及代碼示例
- Ruby ENV.values_at用法及代碼示例
注:本文由純淨天空篩選整理自ruby-lang.org大神的英文原創作品 ENV.to_h。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。