Ruby 集合 subtract()函数
subtract() 是Ruby中的一个内置方法,在删除所有出现在传递的枚举中的对象后返回集合。
语法 :s1_name.subtract(enum)
参数 :该函数接收一个enum对象,其元素将从集合中删除。
返回值 : 从集合中删除枚举中的所有元素后,返回自身对象。
例子 1 :
# Ruby program to illustrate
# the subtract() method
# requires the set
require "set"
s1 = Set[2, 12, 78, 10, 87, 98]
s2 = Set[2, 10, 87]
# subtract method used
puts s1.subtract(s2)
输出:
Set: {12, 78, 98}
例2 :
# Ruby program to illustrate
# the subtract() method
# requires the set
require "set"
s1 = Set[4, 5, 6, 7, 10]
# subtract method used
puts s1.subtract([5, 7])
输出:
Set: {4, 6, 10}