加吗?是Ruby中的内置方法,它将给定对象添加到集合中并返回self。如果对象已经在集合中,则返回nil。
用法:s1.name.add?(object)
参数:该函数采用要添加到集合中的对象。
返回值:如果对象不在集合中并被添加,则返回self;如果对象已经在集合中,则返回nil。
例子1:
#Ruby program to illustrate the add ? method
#requires the set
require "set"
s1
= Set[2, 1]
#Enters 4 into it
puts s1.add
? (4)
#Enters 4 into it
#But set has already 4
puts s1.add
? (4)
输出:
Set:{2, 1, 4}
例子2:
#Ruby program to illustrate the add ? method
#requires the set
require "set"
s1
= Set[5]
#Enters 5 into it
#But set has already 5
puts s1.add
? (5)
#Enters 8 into it
puts s1.add
? (8)
输出:
Set:{5, 8}
参考:https://devdocs.io/ruby~2.5/set#method-i-add-3F
相关用法
- Ruby Set empty?()用法及代码示例
- Ruby Range new()用法及代码示例
- Ruby Hash eql?用法及代码示例
- Ruby Integer abs()用法及代码示例
- Ruby Hash dig()用法及代码示例
- Ruby Hash each()用法及代码示例
- Ruby Range first()用法及代码示例
- Ruby Range last()用法及代码示例
- Ruby Integer chr用法及代码示例
- Ruby Enumerable any?用法及代码示例
- Ruby Enumerable max()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Set add? function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。