加嗎?是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?用法及代碼示例
- Scala Integer -用法及代碼示例
- Ruby Integer abs()用法及代碼示例
- Ruby Hash dig()用法及代碼示例
- Ruby Hash each()用法及代碼示例
- Ruby Range first()用法及代碼示例
- Ruby Range last()用法及代碼示例
- Ruby Integer chr用法及代碼示例
- Ruby Enumerable any?用法及代碼示例
- Ruby Enumerable max()用法及代碼示例
- Scala Struct ==用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Set add? function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。