欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

几个Ruby用法的小技巧

程序员文章站 2024-02-19 11:10:40
...
原文是说几个蠢笨的ruby技巧
原文地址:http://robots.thoughtbot.com/

[b]代码块的序列调用[/b]

def touch_down
yield [3, 7]
puts "touchdown!"
end

touch_down do |(first_down, second_down)|
puts "#{first_down} yards on the run"
puts "#{second_down} yards passed"
end

=> "3 yards on the run"
=> "7 yards passed"
=> "touchdown!"


主要是说array在block中的使用

[b]从array中取出元素[/b]

>> args = [1, 2, 3]
>> first, rest = args

>> first
=> 1

>> rest
=> [2, 3]


之前只是清楚split序列的用法,没有注意到实际上,我们可以方便的得到剩余的序列。

[b]Hash#fetch[/b]

>> items = { :apples => 2, :oranges => 3 }
=> items = {:apples=>2, :oranges=>3}

>> items.fetch(:apples)
=> 2

>> items.fetch(:bananas) { |key| "We don't carry #{key}!"}
=> We don't carry bananas!


在散列的使用的时候,fetch可能会比检查是否存在值要方便一些。

[b]创建代码段的散列[/b]

>> smash = Hash.new { |hash, key| hash[key] = "a #{key} just got SMASHED!" }
=> {}

>> smash[:plum] = "cannot smash."
=> {:plum=>"cannot smash."}

>> smash[:watermelon]
=> {:plum=>"cannot smash.", :watermelon=>"a watermelon just got SMASHED!"}


将代码段用于生产散列可以方便的保持一些未定义的初始值,特别是在斐波纳契计算中很适合(我没有看出来怎么用)

[b]Array#sort_by[/b]

>> cars = %w[beetle volt camry]
=> ["beetle", "volt", "camry"]

>> cars.sort_by { |car| car.size }
=> ["volt", "camry", "beetle"]


序列的sort_by方法用来对代码段的返回值排序,就如同对于Symbol#to_proc进行map或者sort


[b]String#present?
[/b]
>> "brain".present?
=> true

>> "".present?
=> false


Rails的开发者可能对于blank?比较熟悉,然而对于present呢?实际上判断返回值是否正确这也是很好用的方法。

这里我确实想起来,对于find(:all)和find(:first)是否有返回值的判断的不同。还有一个
[list]
[*]
[*].exists?
[*].empty?
[*].blank?
[*].nil?
[/list]

比较多见到吧