empty?()是Ruby中的内置方法,如果集合为空或返回false,则返回true。
用法:s1.empty?()
参数:该函数不带任何参数。
返回值:它返回一个布尔值。如果集合为空,则返回true,否则返回false。
例子1:
# Ruby program to illustrate the empty method
# requires the set
require "set"
s1 = Set[]
# empty method used
puts "is empty?:"
puts s1.empty?()
输出:
is empty?: true
例子2:
# Ruby program to illustrate the empty method
# requires the set
require "set"
s1 = Set[16, 8, 3, 5, 2]
# empty method used
puts "is empty?:"
puts s1.empty?()
输出:
false
相关用法
- Ruby StringScanner empty?用法及代码示例
- Ruby SizedQueue empty?用法及代码示例
- Ruby Matrix empty?()用法及代码示例
- Ruby Symbol empty?用法及代码示例
- Ruby Hash empty?用法及代码示例
- Ruby Queue empty?用法及代码示例
- Ruby String empty?用法及代码示例
- Ruby Array class empty?()用法及代码示例
- Ruby Set add?用法及代码示例
- Ruby Time now()用法及代码示例
- Ruby Math log()用法及代码示例
- Ruby Math exp()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Set empty?() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。