Ruby 集合 intersect?()函数

Ruby 集合 intersect?()函数

intersect?() 是Ruby中的一个内置方法,如果该集合和给定的集合至少有一个共同元素,则返回真。

语法 :s1_name.intersect?(s2_name)

参数 :该函数接受一个强制性的参数集,并对其进行检查。

返回值 : 如果该集合和给定的集合至少有一个共同的元素,则返回真,否则返回假。

例子 1 :

# Ruby program to illustrate 
# the intersect method 
   
# requires the set 
require "set"
   
s1 = Set[16, 8, 3, 5, 2]
   
s2 = Set[18, 17, 2]
   
# intersect method used
puts s1.intersect?(s2)

输出:

true

例2 :

# Ruby program to illustrate 
# the intersect method 
   
# requires the set 
require "set"
   
s1 = Set[16, 8]
   
s2 = Set[18, 17, 56]
   
# intersect method used
puts s1.intersect?(s2)

输出:

false

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程