Ruby 集合 length()函数
length() 是Ruby中一个内置的方法,用于返回集合的大小。它返回集合中的元素数量。
语法 :s1_name.length()
参数 :该函数不接受任何参数。
返回值 : 它返回集合的大小。
例子 1 :
# Ruby program to illustrate
# the length method
# requires the set
require "set"
s1 = Set[16, 8, 3, 5, 2]
# length method used
puts s1.length()
输出:
5
例2 :
# Ruby program to illustrate
# the length method
# requires the set
require "set"
s1 = Set[1, 2, 5]
# length method used
puts s1.length()
输出:
3