最佳答案
使用any?
方法检查数组是否为空是否不好?
a = [1,2,3]
a.any?
=> true
a.clear
a.any?
=> false
还是使用unless a.empty?
更好?