可枚舉的to_a()是Ruby中的一個內置方法,它返回一個包含可枚舉的所有項目的數組。
用法: enu.to_a()
參數:該函數不接受任何參數。
返回值:返回一個數組。
例子1:
# Ruby program for to_a method in Enumerable
# Initialize
enu = (1..6)
# Prints
enu.to_a
輸出:
[1, 2, 3, 4, 5, 6]
範例#2:
# Ruby program for to_a method in Enumerable
# Initialize
enu = {"gopal"=>10, "geeks"=>20}
# Prints
enu.to_a
輸出:
[["gopal", 10], ["geeks", 20]]
相關用法
- Ruby Enumerable one?用法及代碼示例
- Ruby Enumerable any?用法及代碼示例
- Ruby Enumerable sum()用法及代碼示例
- Ruby Enumerable none?()用法及代碼示例
- Ruby Enumerable map()用法及代碼示例
- Ruby Enumerable min()用法及代碼示例
- Ruby Enumerable max()用法及代碼示例
- Ruby Enumerable all?用法及代碼示例
- Ruby Enumerable first()用法及代碼示例
- Ruby Enumerable take()用法及代碼示例
- Ruby Enumerable find_all()用法及代碼示例
- Ruby Enumerable include?()用法及代碼示例
- Ruby Enumerable uniq()用法及代碼示例
- Ruby Enumerable each_cons()用法及代碼示例
- Ruby Enumerable find()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Enumerable to_a() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。