我正在阅读Why's Poignant Guide to Ruby,我遇到了这个代码示例,其中他向 String 类添加了一个类变量和一个实例方法。这个想法是,给定一串外星人的名字,比如“Paij-Ree”,我们可以运行类似
"Paij-ree".determine_significance # returns "Personal AM"
这是代码:
class String
@@syllables = [
{ 'Paij' => 'Personal',
'Gonk' => 'Business',
'Blon' => 'Slave',
'Stro' => 'Master',
'Wert' => 'Father',
'Onnn' => 'Mother' },
{ 'ree' => 'AM',
'plo' => 'PM' }
]
# a method to determine what a certain
# name of his means
def determine_significance
parts = self.split( '-' )
syllables = @@syllables.dup
signif = parts.collect do |p|
syllables.shift[p]
end
signif.join( ' ' )
end
end
我的问题:在 Array#shift 方法后面有方括号的 collect 块中发生了什么?我只能找到这样使用它的示例:
letters = ['a','b','c']
letters.shift # returns "a"
这里发生了什么?
syllables.shift[p]