add是Ruby中的一個內置方法,它將一個元素添加到集合中。加完後返回自身。
用法:s1.name.add(object)
參數:該函數采用要添加到集合中的對象。
返回值:將對象添加到集合中並返回self。
例子1:
#Ruby program to illustrate the add method
#requires the set
require "set"
s1
= Set[2, 1]
#Prints s1
puts s1
#Enters 4 into it
s1.add(4)
#Prints s1
puts s1
#Enters 4 into it
#But set has already 4
s1.add(4)
#Prints s1
puts s1
輸出:
Set:{2, 1} Set:{2, 1, 4} Set:{2, 1, 4}
例子2:
#Ruby program to illustrate the add() method
#requires the set
require "set"
s1
= Set[]
#Prints s1
puts s1
#Enters 1 into it
s1.add(1)
#Enters 2 into it
s1.add(2)
#Prints s1
puts s1
輸出:
Set:{} Set:{1, 2}
參考:https://devdocs.io/ruby~2.5/set#method-i-add
相關用法
- Scala Set -用法及代碼示例
- Scala Set &用法及代碼示例
- Scala Set +用法及代碼示例
- Scala Matrix +用法及代碼示例
- Ruby Float zero?()用法及代碼示例
- Scala Array ==()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Set add() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。