Ruby 数组类的fetch()操作

Ruby 数组类的fetch()操作

Array#fetch() : fetch()是一个数组类方法,用于返回参数索引位置的元素。

语法。 Array.fetch()

参数:索引值

返回:位于参数索引值的元素

代码#1:fetch()方法的例子

# Ruby code for fetch() 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]
  
# fetch
puts "fetch : #{a.fetch(5)}\n\n"
  
# fetch
puts "fetch : #{b.fetch(0)}\n\n"
  
# fetch
puts "fetch : #{c.fetch(2)}\n\n"

输出:

fetch : 6

fetch : 1

fetch : 

代码#2:fetch()方法的例子

# Ruby code for fetch() method
  
# declaring array
a = ["abc", "nil", "dog"]
  
# declaring array
b = ["cow", nil, "dog"]
  
# declaring array
c = ["cat", nil, nil]
  
# fetch
puts "fetch : #{a.fetch(2)}\n\n"
  
# fetch
puts "fetch : #{b.fetch(0)}\n\n"
  
# fetch
puts "fetch : #{c.fetch(1)}\n\n"

输出:

fetch : dog

fetch : cow

fetch : 

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程