Ruby 集合 add()方法
add 是Ruby中的一个内置方法,它向集合中添加一个元素。它在添加后会返回自身。
语法 :s1.name.add(object)
参数 :该函数接收要添加到集合中的对象。
返回值 :它将对象添加到集合中并返回自身。
例子 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