Ruby 集合 clear()函数

Ruby 集合 clear()函数

clear() 是Ruby中一个内置的方法,它可以清除集合中的所有元素。

语法 :s1.name.clear()

参数 :该函数不需要任何参数。

返回值 :在清除了集合中的所有元素后,它将返回自身。

例子 1 :

#Ruby program to illustrate the clear method
  
#requires the set
require "set"
  
    s1
    = Set[2, 1]
  
#Prints s1
      puts s1
  
#Clears the set and returns self
#which is printed
          puts s1.clear

输出:

Set: {2, 1}
Set: {}

例2 :

#Ruby program to illustrate the clear method
  
#requires the set
require "set"
  
    s1
    = Set[]
  
#Prints s1
      puts s1
  
#Add 10 to it
          s1
      << 10
  
         puts s1
  
#Clears the set and returns self
#which is printed
             puts s1.clear

输出:

Set: {}
Set: {10}
Set: {}

参考资料 : https://devdocs.io/ruby~2.5/set#method-i-clear

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程