PowerShell数组结合switch语句产生的奇特效果介绍
程序员文章站
2023-12-25 09:03:21
powershell数组与switch语句,powershell中数组可以与switch语句结合,产生意想不到的效果。
powershell中数组可以与switch语句结...
powershell数组与switch语句,powershell中数组可以与switch语句结合,产生意想不到的效果。
powershell中数组可以与switch语句结合,产生意想不到的效果。
先看看例子:
复制代码 代码如下:
$myarray = 1,5,4,2,3,5,2,5
switch ( $myarray ) {
1 { 'one' }
2 { 'two' }
3 { 'three' }
4 { 'four' }
5 { 'five' }
}
数组中的所有元素都是在1,2,3,4,5这个范围的。通过一个switch语句,把每个数字做一个翻译。
在switch之后会自动输出,所以,最终的结果就成了:
复制代码 代码如下:
one
five
four
two
three
five
two
five
five
four
two
three
five
two
five
这是一个很新奇的效果,先记录在这里,后面有需要再来深度挖掘它。