Ruby 集合 difference() 函数
difference 是Ruby中的一个内置方法,它返回一个新的集合,该集合是通过复制该集合,删除出现在给定可枚举对象中的每个元素而建立的。
语法 :s1.name – s2.name
参数 :该函数不需要任何参数。
返回值 :它返回一个新的集合,该集合是通过复制该集合而建立的,删除了出现在给定可数对象中的每个元素。
例子 1 :
# Ruby program to illustrate the difference method
# requires the set
require "set"
s1 = Set[1, 2, 4]
s2 = Set[1, 2, 3]
# difference method used
s3 = s1.difference(s2)
# Prints the s3
puts s3
输出:
Set: {4}
例2 :
# Ruby program to illustrate the difference method
# requires the set
require "set"
s1 = Set[1, 2, 4]
s2 = Set[6, 5, 3]
# difference method used
s3 = s1.difference(s2)
# Prints the s3
puts s3
输出:
Set: {1, 2, 4}