Ruby 集合 >方法
**> **是Ruby中的一个内置方法,如果一个集合是另一个集合的适当超集,则返回true。如果它不是一个适当的超集,那么它返回false。
语法 :s1.name > s2.name
参数 :该函数不需要任何参数。
返回值 : 如果集合s1是s2的适当超集,则返回true,否则返回false。
例子 1 :
# Ruby program to illustrate the > method
# requires the set
require "set"
s1 = Set[1, 2]
s2 = Set[1, 2, 3]
# > method used
puts s1 > s2
输出:
false
例2 :
# Ruby program to illustrate the > method
# requires the set
require "set"
s1 = Set[1, 2, 3, 4]
s2 = Set[1, 2, 3]
# > method used
puts s1 > s2
输出:
true