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