gpt4 book ai didi

powershell - 为什么我可以在空数组上调用 GetType() 而不是从函数返回时调用

转载 作者:行者123 更新时间:2023-12-04 20:04:17 25 4
gpt4 key购买 nike

在我对更好地理解 Powershell 的永无止境的追求中,有人可以向我解释这种行为吗:

function fn1{return @()}
(@()).GetType() #does not throw an error
(fn1).GetType() #throws error "You cannot call a method on a null-valued expression."

为什么从函数返回一个值会使其“不同”?

有趣的是(也许不是),管道到 get-member 在两种情况下都表现出相同的行为:
function fn1{return @()}
@() | gm #does throw an error "You cannot call a method on a null-valued expression."
fn1 | gm #does throw an error "You cannot call a method on a null-valued expression."

颜色让我困惑。有人可以解释一下吗?

最佳答案

发生这种情况是因为当您从函数返回一个数组(可能还有任何其他集合)时,PowerShell 会将数组的每个元素放入管道中。所以GetType()实际上不是在空数组上调用,而是它的元素(丢失)。

解决方案可能是在另一个数组中返回您的数组:)。

function fn1{return ,@()}
(fn1).GetType()

现在 Powershell 将传递到这个“父”数组的管道元素中,它恰好只包含一个元素:你的空数组。
请注意,您无法通过 return @(@()) 实现这一点。 , 因为外部 @()只保证返回的结果将是一个数组,它已经是。

关于powershell - 为什么我可以在空数组上调用 GetType() 而不是从函数返回时调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27421323/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com