PowerShell ForEach() 方法

例子

4.0

除了ForEach-Objectcmdlet,这里也可以ForEach直接在对象数组上使用方法,如下所示

(1..10).ForEach({$_ * $_})

或者 - 如果需要 - 可以省略脚本块周围的括号

(1..10).ForEach{$_ * $_}

两者都会导致下面的输出

1
4
9
16
25
36
49
64
81
100