1

这次短了一个。为什么这不起作用?

Function identity($x){$x}
@(1,2,3)[identity(1)]

(这些确实有效)

identity(1)
@(1,2,3)[1]
4

1 回答 1

2

identity(1)您需要通过将其放在括号中使其首先执行。

@(1,2,3)[(identity(1))]
于 2013-07-11T04:53:53.027 回答