這個foreach()
是 julia 中的一個內置函數,用於在指定的可迭代對象 c 的每個元素上調用函數 f。
用法: foreach(f, c…)
參數:
- f:指定的指令集。
- c:指定的可迭代對象。
返回值:它返回函數 f 對指定可迭代對象 c 的每個元素的操作結果。
範例1:
# Julia program to illustrate
# the use of foreach() method
# Getting the result of the operation
# of function f on each element of
# the specified array a.
a = [1, 2, 3];
foreach(x -> println(x ^ 3), a)
輸出:
1 8 27
範例2:
# Julia program to illustrate
# the use of foreach() method
# Getting the result of the operation
# of function f on each element of
# the specified iterable c.
a = 1:3;
foreach(x -> println(x ^ 2), a)
輸出:
1 4 9
相關用法
- Julia getindex()用法及代碼示例
- Julia collect()用法及代碼示例
- Julia copyto!()用法及代碼示例
- Julia eachindex()用法及代碼示例
- Julia findmax()用法及代碼示例
- Julia findmin()用法及代碼示例
- Julia first()用法及代碼示例
- Julia last()用法及代碼示例
- Julia zero()用法及代碼示例
- Julia ceil()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Accessing each element of a collection in Julia – foreach() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。