Ruby Vector [] 方法
在Ruby中, [] 是一个内置的方法,用于返回位置为x的元素,索引从0开始。
语法 :vec1[x]
参数 :该函数不接受任何参数。
返回值 :它返回位于x位置的元素 。
例子 1 :
#Ruby program for[] method in Vector
#Include matrix
require "matrix"
#Initialize the vector
vec1
= Vector[1, 5]
#Initialize the vector
x
= 1
#prints the new vector
puts vec1[x]
输出:
5
例2 :
#Ruby program for[] method in Vector
#Include matrix
require "matrix"
#Initialize the vector
vec1
= Vector[3, 6, 9]
#Initialize the vector
x
= 0
#prints the new vector
puts vec1[x]
输出:
3