gpt4 book ai didi

arrays - Powershell 根据元素的数量返回不同的数据类型

转载 作者:行者123 更新时间:2023-12-02 09:22:01 25 4
gpt4 key购买 nike

目前,我对 Powershell 及其处理数组/ArrayLists 和 PSObjects/CustomObjects 的方式感到非常困惑。

高级:

我正在尝试导入 CSV 文件并在特定行插入“占位符”条目。这实际上工作正常。我目前唯一的问题是,如果 CSV 仅包含 1 个元素(行),Powershell 会创建一个 PsCustomObject。如果有多行,Powershell 会提供一个数组。

`$pConnectionsOnMpDevice 中的 1 个元素

$pConnectionsOnMpDevice  = ($pList | ?({$_.device -like "*$pDevice*"}))
($pConnectionsOnMpDevice).getType()

IsPublic IsSerial Name BaseType
True True PsCustomObject[] System.Object

$pConnectionsOnMpDevice 中的 n 元素

$pConnectionsOnMpDevice  = ($pList | ?({$_.device -like "*$pDevice*"}))
($pConnectionsOnMpDevice).getType()

IsPublic IsSerial Name BaseType
True True Object[] System.Array

最后我尝试添加一个元素:

$pConnectionsOnMpDevice += $MpObject

(我的第一个方法是使用(仅供引用):

#$pConnectionsOnMpDevice.Insert($index,$match)

如果我尝试将 $MpObject 添加到 $pConnectionsOnMpDevice,我会收到以下错误:

Method invocation failed because [System.Management.Automation.PSObject] does not contain a method named 'op_Addition'.
At C:\Scripts\PS_GenerateMPConfig\PS_GenerateMPConfig_06_f.ps1:90 char:13
+ $pConnectionsOnMpDevice += $MpObject
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidOperation: (op_Addition:String) [], RuntimeException
+ FullyQualifiedErrorId : MethodNotFound

我认为这与描述的问题相同 here

我试图通过以下方式将 $pConnectionsOnMpDevice 转换为 Arraylist:

[System.Collections.ArrayList]::$pConnectionsOnMpDevice  += $MpObject

但还是没有成功。

有人建议我如何添加元素吗?

最佳答案

使用数组子表达式运算符 (@()) 强制值表达式返回数组:

$pConnectionsOnMpDevice  = @($pList | ?({$_.device -like "*$pDevice*"}))

I tried to cast $pConnectionsOnMpDevice to an Arraylist by:

[System.Collections.ArrayList]::$pConnectionsOnMpDevice  += $MpObject

这不是强制转换,而是静态调用 - PowerShell 将调用与 "$pConnectionOnMpDevice" 同名的任何静态方法或属性。

如果你想要强制转换操作,请删除 :::

$array = 1,2,3
$arraylist = [System.Collections.ArrayList]$array

关于arrays - Powershell 根据元素的数量返回不同的数据类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41851783/

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