powershell数组定义,数组长度,powershell数组追加,powershell数组遍历
数组是powershell里经常使用的一种数据结构, 在使用powershell开发时, 合理使用数组, 可以提高效率, 下面来讲一讲… 一、 powershell数组定义 powershell里定义一个数组, 使用 , 分割 $arr = 1, 3, 5, 7, 9 如果是连续的数字, 可以使用双点号 $arr = 1..9 二、[详细]
阅读 835 发布时间:2019-03-28