intersect()方法用于计算两个集合之间的交集。
函数定义: def intersect(that: Set[A]): Set[A]
返回类型: It returns a set containing the elements present in both the sets.
范例1:
// Scala program of intersect()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a set
val s1 = Set(1, 2, 3, 4, 5)
val s2 = Set(11, 12, 13, 4, 5)
// Applying intersect method
val s3 = s1.intersect(s2)
s3.foreach(x => println(x))
}
}
输出:
5 4
范例2:
// Scala program of intersect()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a set
val s1 = Set(1, 2, 3, 4, 5)
val s2 = Set(11, 2, 3, 4, 5)
// Applying intersect method
val s3 = s1.intersect(s2)
s3.foreach(x => println(x))
}
}
输出:
5 2 3 4
相关用法
- Scala TreeSet intersect()用法及代码示例
- Scala SortedSet intersect()用法及代码示例
- Scala Stack intersect()用法及代码示例
- Scala Queue intersect()用法及代码示例
- Scala Map max()用法及代码示例
- Scala Int max()用法及代码示例
- Scala Int min()用法及代码示例
- Scala Map min()用法及代码示例
- Scala Int self()用法及代码示例
- Scala Set sum()用法及代码示例
- Scala Map get()用法及代码示例
注:本文由纯净天空筛选整理自rupesh_rao大神的英文原创作品 Scala Set intersect() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。