使用 unshift
方法怎么样?
ary.unshift(obj, ...) → ary 在 self 前面添加对象,向上移动其他元素。
并在使用中:
irb>> a = [ 0, 1, 2]
=> [0, 1, 2]
irb>> a.unshift('x')
=> ["x", 0, 1, 2]
irb>> a.inspect
=> "["x", 0, 1, 2]"
您可以使用 insert
:
a = [1,2,3]
a.insert(0,'x')
=> ['x',1,2,3]
其中第一个参数是要插入的索引,第二个是值。
array = ["foo"]
array.unshift "bar"
array
=> ["bar", "foo"]
警告,这是破坏性的!
从 Ruby 2.5.0 开始,Array 附带了 prepend
方法(它只是 unshift
方法的别名)。
您可以使用 methodsolver
查找 Ruby 函数。
这是一个小脚本,
require 'methodsolver'
solve { a = [1,2,3]; a.____(0) == [0,1,2,3] }
运行此打印
Found 1 methods
- Array#unshift
您可以使用安装methodsolver
gem install methodsolver
irb> require 'methodsolver'
导致 LoadError: cannot load such file -- method_source
from ... from /var/lib/gems/1.9.1/gems/methodsolver-0.0.4/lib/methodsolver.rb:2
。红宝石 1.9.3p484,irb 0.9.6,Ubuntu 14。
pry
而不是 irb
您可以使用 prepend
和 delete
的组合,它们既是惯用的,也是意图揭示的:
array.delete(value) # Remove the value from the array
array.prepend(value) # Add the value to the beginning of the array
或者在一行中:
array.prepend(array.delete(value))
shift
和unshift
之间的哪些添加到数组中,哪些从数组中删除,请在脑海中从名称中删除一个“f”,您会得到一个非常清晰的图像方向。 (然后您必须记住,这些方法不适用于数组的“末端”。;)