Ruby 集合 length()函数

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程