Ruby數(shù)組操作如何清空數(shù)組

小樊
81
2024-11-06 02:53:36

在Ruby中,有多種方法可以清空數(shù)組。以下是一些常見的方法:

  1. 使用clear方法:
array = [1, 2, 3, 4, 5]
array.clear
puts array.inspect # 輸出:[]
  1. 使用delete_all方法:
array = [1, 2, 3, 4, 5]
array.delete_all
puts array.inspect # 輸出:[]
  1. 使用pop方法(刪除并返回?cái)?shù)組的最后一個(gè)元素,直到數(shù)組為空):
array = [1, 2, 3, 4, 5]
array.pop while array.length > 0
puts array.inspect # 輸出:[]
  1. 使用shift方法(刪除并返回?cái)?shù)組的第一個(gè)元素,直到數(shù)組為空):
array = [1, 2, 3, 4, 5]
array.shift while array.length > 0
puts array.inspect # 輸出:[]
  1. 使用slice!方法(刪除并返回?cái)?shù)組的一部分,直到數(shù)組為空):
array = [1, 2, 3, 4, 5]
array.slice!(1..3)
puts array.inspect # 輸出:[1, 5]
  1. 使用reject!方法(刪除數(shù)組中滿足條件的所有元素,直到數(shù)組為空):
array = [1, 2, 3, 4, 5]
array.reject! { |x| x % 2 == 0 }
puts array.inspect # 輸出:[1, 3, 5]
  1. 使用select!方法(刪除數(shù)組中不滿足條件的所有元素,直到數(shù)組為空):
array = [1, 2, 3, 4, 5]
array.select! { |x| x % 2 != 0 }
puts array.inspect # 輸出:[2, 4]

以上就是Ruby中清空數(shù)組的一些常見方法。你可以根據(jù)自己的需求選擇合適的方法來(lái)清空數(shù)組。

0