将哈希表作为参数传递给PowerShell

时间:2015-05-12 11:13:16

标签: powershell

我在PowerShell脚本中遇到问题:

当我想将Hashtable传递给函数时,此哈希表不会被识别为哈希表。

function getLength(){
    param(
        [hashtable]$input
    )

    $input.Length | Write-Output
}

$table = @{};

$obj = New-Object PSObject;$obj | Add-Member NoteProperty Size 2895 | Add-Member NoteProperty Count 5124587
$table["Test"] = $obj


$table.GetType() | Write-Output ` Hashtable
$tx_table = getLength $table `Unable to convert System.Collections.ArrayList+ArrayListEnumeratorSimple in System.Collections.Hashtable

为什么?

2 个答案:

答案 0 :(得分:13)

$Input是一个automatic variable,用于枚举给定的输入。

选择任何其他变量名称并且它将起作用 - 尽管不一定如您所料 - 要获取散列表中的条目数,您需要检查Count属性:

function Get-Length {
    param(
        [hashtable]$Table
    )

    $Table.Count
}
当您离开Write-Output时,隐含

$Table.Count

此外,当您使用()内联声明参数时,函数名称中的Param()后缀是不必要的语法糖含义为零 -

答案 1 :(得分:0)

我不太确定在此发表什么评论,这似乎是不言而喻的。如果没有,请发表评论,我会澄清。

$ExampleHashTable = @{
    "one" = "the loneliest number"
    "two" = "just as bad as one"
}

Function PassingAHashtableToAFunctionTest {
    param(
        [hashtable] $PassedHashTable,
        [string] $AHashTableElement
    )

    Write-Host "One is ... " 
    Write-Host $PassedHashTable["one"]
    Write-Host "Two is ... " 
    Write-Host $AHashTableElement
}

PassingAHashtableToAFunctionTest -PassedHashTable $ExampleHashTable `
    -AHashTableElement $ExampleHashTable["two"]

输出:

One is ... 
the loneliest number
Two is ... 
just as bad as one