include?()是Ruby中的内置方法,如果集合包含给定的对象,则返回true。如果不包含给定的对象,则返回false。
用法:s1_name.include?(object)
参数:该函数接受必须检查其存在性的强制性参数对象。
返回值:如果集合包含给定对象,则返回true,否则返回false。
例子1:
# Ruby program to illustrate
# the include method
# requires the set
require "set"
s1 = Set[16, 8, 3, 5, 2]
# include method used
puts s1.include?(2)
输出:
true
例子2:
# Ruby program to illustrate
# the include method
# requires the set
require "set"
s1 = Set[1, 2, 3]
# include method used
puts s1.include?(5)
输出:
false
相关用法
- Ruby Range include?()用法及代码示例
- Ruby Hash include?()用法及代码示例
- Ruby Enumerable include?()用法及代码示例
- Ruby String include?用法及代码示例
- Ruby Array class include?()用法及代码示例
- Ruby Set add?用法及代码示例
- Ruby Enumerator each用法及代码示例
- Ruby Struct eql?()用法及代码示例
- Ruby Hash each()用法及代码示例
- Ruby DateTime sec()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Set include?() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。