这个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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。