标签: arrays function powershell
这次短暂一次。为什么这不起作用?
Function identity($x){$x} @(1,2,3)[identity(1)]
(这些确实有用)
identity(1) @(1,2,3)[1]
答案 0 :(得分:2)
你需要先把它括起来执行identity(1)。
identity(1)
@(1,2,3)[(identity(1))]