如何使用整数键访问有序PowerShell哈希表中的值?

时间:2018-08-04 13:52:04

标签: powershell key hashtable

我的要求是存储整数键,并在ordered哈希表中使用这些整数键访问哈希表值。

有效的方法

当我使用字符串键时,没问题:

cls

$foo=[ordered]@{}

$foo.add("12",1)
$foo.add("24",2)

write-host ("first item=" + $foo.Item("12"))
write-host ("second item=" + $foo.Item("24"))

输出:

first item=1
second item=2

使用括号失败

当我使用方括号时,该程序不会引发异常,但不会返回任何内容:

$fooInt=[ordered]@{}

$fooInt.add(12,1)
$fooInt.add(24,2)

write-host ("first item=" + $fooInt[12])
write-host ("second item=" + $fooInt[24])

输出:

first item=
second item=

使用Item方法失败

当我使用Item方法和整数键时,PowerShell将整数键解释为索引而不是键:

$fooInt=[ordered]@{}

$fooInt.add(12,1)
$fooInt.add(24,2)

write-host ("first item=" + $fooInt.Item(12))
write-host ("second item=" + $fooInt.Item(24))

输出:

Exception getting "Item": "Index was out of range. Must be non-negative and less than the size of the collection.
Parameter name: index"
At line:8 char:1
+ write-host ("first item=" + $fooInt.Item(12))
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [], GetValueInvocationException
    + FullyQualifiedErrorId : ExceptionWhenGetting

Exception getting "Item": "Index was out of range. Must be non-negative and less than the size of the collection.
Parameter name: index"
At line:9 char:1
+ write-host ("second item=" + $fooInt.Item(24))
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [],  GetValueInvocationException
    + FullyQualifiedErrorId : ExceptionWhenGetting

如何使用整数键访问PowerShell哈希表中的值?

2 个答案:

答案 0 :(得分:6)

哈希表中的键是对象,而不是字符串。当您尝试使用整数"12"访问键12时,由于键不匹配,它找不到该条目。

但是,您没有使用标准哈希表,而是使用了有序哈希表,该哈希表具有不同的Item方法,因为它可以通过键或索引。如果要使用有序哈希表访问整数键,则需要使用其他语法:

$hash.12

如果使用数组访问器语法:

$hash[12]

它将尝试返回列表中的第13个项目。


您可以使用Get-Member观察这些对象之间的差异:

$orderedHash | Get-Member Item

   TypeName: System.Collections.Specialized.OrderedDictionary

Name MemberType            Definition
---- ----------            ----------
Item ParameterizedProperty System.Object Item(int index) {get;set;}, System.Object Item(System.Object key) {get;set;}

$hash | Get-Member Item

   TypeName: System.Collections.Hashtable

Name MemberType            Definition
---- ----------            ----------
Item ParameterizedProperty System.Object Item(System.Object key) {get;set;}

经过更多实验后,只有int32类型的情况如此。如果您使用其他类型定义和访问它,它将不再起作用,因为它不再匹配重载的int签名:

$hash = [ordered]@{
    ([uint32]12) = 24
}
$hash[[uint32]12]
> 24

答案 1 :(得分:1)

摘要

$fooInt.Item([object]12)$fooInt[[object]12]


推理

如TheIncorrigible1的回答所示,.Item具有重载;它由方法get_Item支持:

PS C:\> $fooInt.get_Item

OverloadDefinitions
-------------------
System.Object get_Item(int index)
System.Object get_Item(System.Object key)
System.Object IOrderedDictionary.get_Item(int index)
System.Object IDictionary.get_Item(System.Object key)

采用整数进行索引的版本来自IOrderedDictionary接口,常规IDictionary键查找采用[System.Object]。当您尝试将其与整数参数一起使用时,PowerShell会绑定一个采用[int]的版本,因为它是一个更好的匹配,然后运行该版本。

之前,我评论了如何使用反射来选择所需的重载并调用它,但这很丑陋:

$fooInt.GetType().GetMethods().where{
        $_.Name -eq 'get_Item' -and $_.GetParameters().Name -eq 'Key'
    }.Invoke($fooInt, 'Public', $null, 12, $null)
                                        ^ your parameter

考虑一下,[int]是一个值类型,而不是引用类型,这意味着.Net必须将其装箱到对象中以将其放入哈希表中。因此,也许如果在执行查找时也将整数参数放入对象中,PowerShell可能会绑定到所需的重载并执行键查找,但仍匹配正确的键..您知道什么,它会起作用:

PS C:\> $fooInt=[ordered]@{}

PS C:\> $fooInt.add(12,1)
PS C:\> $fooInt.add(24,2)

PS C:\> write-host ("first item=" + $fooInt.Item([object]12))
first item=1

它也适用于索引编制:

PS C:\> write-host ("first item=" + $fooInt[[object]12])
first item=1

这与TheIncorrigible1的实验非常接近,除了您不需要用其他类型的键来定义字典,然后将查找转换为匹配的类型,您只需要通过将其强制转换为对象来访问它,因为您定义的键已经在内部发生了。