Ruby 集合 <= 方法

Ruby 集合 <= 方法

**< = **是Ruby中的一个内置方法,如果该集合是给定集合的一个子集,则返回真。

语法 :s1_name <= s2_name

参数 :该函数需要一个强制参数,用于检查子集。

返回值 :它返回自身。

例子 1 :

# Ruby program to illustrate 
# the <= method 
   
# requires the set 
require "set"
   
s1 = Set[2, 12, 78, 10, 87, 98] 
s2 = Set[2, 10, 87]
   
# reset method used 
puts s2 <= s1

输出:

true

例2 :

# Ruby program to illustrate 
# the <= method 
   
# requires the set 
require "set"
   
s1 = Set[2, 12, 78, 10, 87, 98] 
s2 = Set[1, 2, 3]
   
# reset method used 
puts s2 <= s1

输出:

false

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程