当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby Set add()用法及代码示例


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



相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Set add() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。