当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby Set intersection()用法及代码示例


intersection()是Ruby中的内置方法,它返回一个集合,其中包含两个集合中的公共元素。如果没有公共元素,则返回一个空集。

用法: s1.name.intersection(s2.name)

参数:该函数不带任何参数。


返回值:它返回一个新集合,其中包含两个集合中的公共元素。

例子1

# Ruby program to illustrate the intersection method  
   
# requires the set  
require "set"
   
s1 = Set[1, 2, 4] 
s2 = Set[1, 2, 3]  
   
# intersection method used 
s3 = s1.intersection(s2)  
   
# Prints the s3  
puts s3

输出

Set: {1, 2}

例子2

# Ruby program to illustrate the & method  
   
# requires the set  
require "set"
   
s1 = Set[1, 2, 4] 
s2 = Set[6, 5, 3]  
   
# method used 
s3 = s1.intersection(s2)  
   
# Prints the s3  
puts s3

输出

<Set: {}


相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Set intersection() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。