reset()是Ruby中的内置方法,在修改现有元素后会重置内部状态并返回self。元素将被重新索引和重复数据删除。
用法: s1.reset()
参数:该函数不接受任何参数。
返回值:它返回自我。
例子1:
# Ruby program to illustrate
# the reset() method
# requires the set
require "set"
s1 = Set[2, 12, 78, 10, 87, 98]
# reset method used
puts s1.reset()
输出:
Set: {2, 12, 78, 10, 87, 98}
例子2:
# Ruby program to illustrate
# the reset() method
# requires the set
require "set"
s1 = Set[1, 2, 4, 3, 2]
# reset method used
puts s1.reset()
输出:
Set: {1, 2, 4, 3}
相关用法
- Ruby StringScanner reset用法及代码示例
- Ruby Set add?用法及代码示例
- Ruby Random new()用法及代码示例
- Ruby Time now()用法及代码示例
- Ruby BigDecimal zero?()用法及代码示例
- Ruby Set intersect?()用法及代码示例
- Ruby Matrix det()用法及代码示例
- Ruby Complex abs用法及代码示例
- Ruby Set replace()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Set reset() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。