在 powershell 的 List[int] 中添加元素时显示错误?

Showing error while adding element in List[int] in powershell?

$sumList= New-Object System.Collections.Generic.List[int]
$eventList = New-Object System.Collections.Generic.List[string]
$preSumList= New-Object System.Collections.Generic.List[int]
$threadInitDelay = [int]$commaSplit[++$eventIndex].Split(':')[1].Trim()  
$preProcessTime = [int]$commaSplit[++$eventIndex].Split(':')[1].Trim()+[int]$commaSplit[++$eventIndex].Split(':')[1].Trim()+$commaSplit[[int]++$eventIndex].Split(':')[1].Trim()
$respTime = [int]$commaSplit[++$eventIndex].Split(':')[1].Trim();
$index =$eventList.FindIndex({param([string]$s) return $s -like 'hi'})

if($index -eq -1){
    $eventList.Add($eventName)
    $sumList.Add($threadInitDelay)
    $respSumList.Add($respTime)

出现此错误:

Method invocation failed because [System.Int32[]] doesn't contain a method named 'Add'.
At D:\Powercel\PowershellPractice.ps1:151 char:19
+                         $sumList.Add <<<< ($threadInitDelay)
    + CategoryInfo          : InvalidOperation: (Add:String) [], RuntimeException
    + FullyQualifiedErrorId : MethodNotFound


Method invocation failed because [System.Int32[]] doesn't contain a method named 'Add'.
At D:\Powercel\PowershellPractice.ps1:152 char:23
+                         $respSumList.Add <<<< ($respTime)
    + CategoryInfo          : InvalidOperation: (Add:String) [], RuntimeException
    + FullyQualifiedErrorId : MethodNotFound

Method invocation failed because [System.Int32[]] doesn't contain a method named 'Add'.
At D:\Powercel\PowershellPractice.ps1:153 char:23
+                         $respMaxTime.Add <<<< ($respTime)
    + CategoryInfo          : InvalidOperation: (Add:String) [], RuntimeException
    + FullyQualifiedErrorId : MethodNotFound

Method invocation failed because [System.Int32[]] doesn't contain a method named 'Add'.
At D:\Powercel\PowershellPractice.ps1:155 char:19
+                         $minTime.Add <<<< ($threadInitDelay)
    + CategoryInfo          : InvalidOperation: (Add:String) [], RuntimeException
    + FullyQualifiedErrorId : MethodNotFound

你能帮帮我吗?

一种可能的情况是您正在测试并实际将这些变量转换为错误状态。错误并没有错。这些变量不是您代码中的列表类型。我可以几乎重现这个问题:

PS M:\Scripts\Inno\Output> [int[]]$sumlist = 5,5

PS M:\Scripts\Inno\Output> $sumlist.GetType().Fullname
System.Int32[]

PS M:\Scripts\Inno\Output> $sumlist.Add(5)
Exception calling "Add" with "1" argument(s): "Collection was of a fixed size."
At line:1 char:1
+ $sumlist.Add(5)
+ ~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
    + FullyQualifiedErrorId : NotSupportedException

PS M:\Scripts\Inno\Output> $sumlist = New-Object System.Collections.Generic.List[int]

虽然我没有得到与您相同的错误,但关键是变量的类型没有改变,即使我试图重铸它。那是因为变量的属性。查看命令 Get-Variable sumlist | ft Name,Attributes,您 应该 看到 System.Management.Automation.ArgumentTypeConverterAttribute。删除变量并重新开始我得到你预期的行为。

PS M:\Scripts\Inno\Output> Remove-Variable sumlist

PS M:\Scripts\Inno\Output> $sumlist = New-Object System.Collections.Generic.List[int]

PS M:\Scripts\Inno\Output> $sumlist.Add(5)

PS M:\Scripts\Inno\Output> $sumlist.GetType().FullName
System.Collections.Generic.List`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]