Ruby 数组at()函数
Ruby中的at()函数是用来返回指定索引的元素的。索引0代表数组的第一个元素,1代表数组的第二个元素,以此类推。负的索引从输入数组的末端开始计算。
语法: Array.at(Index)
这里 Array 是输入的元素数组,at()函数被调用。
参数:
Index: 要返回的对应元素,这个索引可以是负的、正的或零。
返回: 对应的元素,其索引被作为参数。
例1 :
# Initialising a array of elements
Array = ["a", "b", "c", "d", "e", "gfg",
"Geeks", "Geek", "GeeksforGeeks"]
# Calling to at() function
A = Array.at(0)
B = Array.at(1)
C = Array.at(3)
D = Array.at(5)
E = Array.at(-1)
F = Array.at(-3)
# Getting the corresponding elements
# whose indexs are given as parameter
puts "#{A}"
puts "#{B}"
puts "#{C}"
puts "#{D}"
puts "#{E}"
puts "#{F}"
输出
a
b
d
gfg
GeeksforGeeks
Geeks
例2 :
# Initializing a array of elements
Array = [0, 1, 2, 3, 4, 10, 20, 30, 40]
# Calling the at() function with indexes
# as the parameter and getting the
# corresponding elements whose indexs are given
puts "#{Array.at(0)}"
puts "#{Array.at(1)}"
puts "#{Array.at(3)}"
puts "#{Array.at(5)}"
puts "#{Array.at(-1)}"
puts "#{Array.at(-3)}"
输出
0
1
3
10
40
20
参考资料 :https://devdocs.io/ruby~2.5/array#method-i-at