Ruby 数组类的index()函数
index()是一个数组类方法,用于返回数组中第一个对象的索引。
语法。Array.index()
参数。数组
obj – 要搜索的对象
返回。第一个数组的索引值
例子 #1 :
# Ruby code for index() method
# declaring array
a = [18, 22, 33, nil, 5, 6]
# declaring array
b = [1, 4, 1, 1, 88, 9]
# declaring array
c = [18, 22, nil, nil, 50, 6]
# index
puts "index : #{a.index(5)}\n\n"
# index
puts "index : #{b.index(4)}\n\n"
# index
puts "index : #{c.index(nil)}\n\n"
输出:
index : 4
index : 1
index : 2
例子 #2 :
# Ruby code for index() method
# declaring array
a = ["abc", "nil", "dog"]
# declaring array
b = ["cow", nil, "dog"]
# declaring array
c = ["cat", nil, nil]
# index
puts "index : #{a.index("abc")}\n\n"
# index
puts "index : #{b.index(nil)}\n\n"
# index
puts "index : #{c.index(nil)}\n\n"
输出:
index : 0
index : 1
index : 1