当我执行命令时:
$var = @{a=1;b=2}
在Powershell(版本3)中,
$var
以{System.Collections.DictionaryEntry, System.Collections.DictionaryEntry}
的值结尾。为什么会这样呢?如何存储要存储的值? 最佳答案
那是因为您的ISE正在枚举集合以创建变量树 View ,并且从HashtableEnumerator
获得的$var.GetEnumerator()
返回的对象是DictionaryEntry
-objects。
$var = @{a=1;b=2}
#Collection is a Hashtable
$var | Get-Member -MemberType Properties
TypeName: System.Collections.Hashtable
Name MemberType Definition
---- ---------- ----------
Count Property int Count {get;}
IsFixedSize Property bool IsFixedSize {get;}
IsReadOnly Property bool IsReadOnly {get;}
IsSynchronized Property bool IsSynchronized {get;}
Keys Property System.Collections.ICollection Keys {get;}
SyncRoot Property System.Object SyncRoot {get;}
Values Property System.Collections.ICollection Values {get;}
#Enumerated objects (is that a word?) are DictionaryEntry(-ies)
$var.GetEnumerator() | Get-Member -MemberType Properties
TypeName: System.Collections.DictionaryEntry
Name MemberType Definition
---- ---------- ----------
Name AliasProperty Name = Key
Key Property System.Object Key {get;set;}
Value Property System.Object Value {get;set;}
您的值(1和2)存储在对象的
Value
-property中,而它们Key
是您使用的ID(a和b)。仅在需要枚举哈希表时才需要关心这一点。当您遍历每个项目时。对于正常使用,这是幕后魔术师,因此您可以使用
$var["a"]
。