Ruby Vector size()函数
size() 是Ruby中一个内置的方法,用于返回向量中的元素数量。
语法 :vec1.size()
参数 :该函数不接受任何参数
返回值 :它返回矢量中的元素数量。
例子 1 :
# Ruby program for size() method in Vector
# Include matrix
require "matrix"
# Initialize the vector
vec1 = Vector[1, 2, 3]
# Prints the size of vector
puts vec1.size()
输出:
3
例2 :
# Ruby program for size() method in Vector
# Include matrix
require "matrix"
# Initialize the vector
vec1 = Vector[1, 2, 3, 4, 5]
# Prints the size of vector
puts vec1.size()
输出:
5