gpt4 book ai didi

powershell - psCustomObject 作为返回数据,奇怪的管道错误

转载 作者:行者123 更新时间:2023-12-04 03:45:22 28 4
gpt4 key购买 nike

我试图满足我对返回类型性能的好奇心。基本上我想看看在返回复杂数据时哈希表、psCustomObject 和我自己的类之间是否存在有意义的差异。但我在使用 psCustomObject 时遇到了问题。

所以,我开始

class pxObject {
[String]$String
[String]$Failure
[String]$Error

pxObject ([String]$string, [String]$failure, [String]$error) {
$this.String = $string
$this.Failure = $failure
$this.Error = $error
}
}


class pxReturn {
static [HashTable] Hash ([String]$string, [String]$failure, [String]$error) {
[HashTable]$returnHash = @{
String = $string
Failure = $failure
Error = $error
}

return $returnHash
}
static [psCustomObject] psObject ([String]$string, [String]$failure, [String]$error) {
[psCustomObject]$returnObject = [psCustomObject]@{
String = $string
Failure = $failure
Error = $error
}

return $returnObject
}

static [pxObject] pxObject ([String]$string, [String]$failure, [String]$error) {
[pxObject]$returnObject = [pxObject]::new($string, $failure, $error)

return $returnObject
}

}

[Int]$count = 1000
CLS

Write-Host 'Hash ' -NoNewLine
(Measure-Command {
foreach ($i in 1..$count) {
[pxReturn]::Hash("String $i", "Failure $i", "Error $i")
}
}).TotalSeconds
Write-Host 'psObject ' -NoNewLine
(Measure-Command {
foreach ($i in 1..$count) {
[pxReturn]::psObject("String $i", "Failure $i", "Error $i")
}
}).TotalSeconds
Write-Host 'pxObject ' -NoNewLine
(Measure-Command {
foreach ($i in 1..$count) {
[pxReturn]::pxObject("String $i", "Failure $i", "Error $i")
}
}).TotalSeconds

我得到 Measure-Command : The given key was not present in the dictionary. 在 psObject 测试的 Measure-Command 行。鉴于 Measure-Command 有一个代码块,有时会掩盖真正的错误,我将该代码修改为

Write-Host 'psObject ' -NoNewLine
#(Measure-Command {
foreach ($i in 1..$count) {
[pxReturn]::psObject("String $i", "Failure $i", "Error $i")
}
#}).TotalSeconds

现在我得到 An error occurred while creating the pipeline. 没有行信息。这看起来很简单,所以我对它失败的原因感到有些困惑。特别是因为我从另一个工作正常的项目中复制了 psCustomObject 代码。这就是返回数据看起来像它的原因,我之前已经成功地将 psCustomObject 用于这个用例。

编辑:我所做的工作和我正在尝试做的事情的一个区别是在我使用函数之前。所以我修改了上面的代码,添加了一个返回psCustomObject的函数,像这样

function psObjectReturn ([String]$string, [String]$failure, [String]$error) {
[psCustomObject]$returnObject = [psCustomObject]@{
String = $string
Failure = $failure
Error = $error
}
return $returnObject
}

并添加了适当的测试

Write-Host 'psObject (function) ' -NoNewLine
(Measure-Command {
foreach ($i in 1..$count) {
$test = psObjectReturn "String $i" "Failure $i" "Error $i"
}
}).TotalSeconds

这是一种享受。但我正在将所有内容移至类,因此它并没有真正直接解决主要问题。尽管如果您根本无法将 [psCustomObject] 用作类方法的返回类型,则可能会发生这种情况。

此外,性能看起来像这样

Hash                0.01107
psObject (function) 0.0453963
pxObject 0.0245367

这几乎表明哈希表是最快的,但还不足以使其成为强制性的,我可以根据其他标准在哈希表和我自己的类之间做出决定。但我确信类错误中的 psObject 在幕后发生了一些有趣的事情。

最佳答案

问题是您使用 psObject 作为方法名称,这与 hidden, intrinsic .psobject property 冲突.

问题的简化重现:

class Foo { static [pscustomobject] psobject() { return [pscustomobject] @{ foo = 1 } } }
[Foo]::psobject() # -> An error occurred while creating the pipeline.

只需选择不同的方法名称即可解决问题:

class Foo { static [pscustomobject] pscustomobject() { return [pscustomobject] @{ foo = 1 } } }
[Foo]::pscustomobject() # OK

关于powershell - psCustomObject 作为返回数据,奇怪的管道错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65264410/

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