5

在 PowerShell 中,您可以使用方括号指定类型,如下所示:

PS C:\Users\zippy> [int]

IsPublic IsSerial Name                                     BaseType
-------- -------- ----                                     --------
True     True     Int32                                    System.ValueType

还有内置的类型加速器,如 [xml],当您希望将某些内容投射到XmlDocument时,它可以节省一些击键。

PS C:\Users\zippy> [xml]

IsPublic IsSerial Name                                     BaseType
-------- -------- ----                                     --------
True     False    XmlDocument                              System.Xml.XmlNode

您可以通过以下两个命令之一生成列表:

  • PS v2.0[type]::gettype("System.Management.Automation.TypeAccelerators")::Get
  • PS v3.0[psobject].assembly.gettype("System.Management.Automation.TypeAccelerators")::Get

PowerShell 3.0 添加了一个名为 [ordered] 的运算符。虽然它不是类型别名。

PS C:\Users\zippy> [ordered]
Unable to find type [ordered]: make sure that the assembly containing this type is loaded.
At line:1 char:1
+ [ordered]
+ ~~~~~~~~~
    + CategoryInfo          : InvalidOperation: (ordered:TypeName) [], RuntimeException
    + FullyQualifiedErrorId : TypeNotFound

但是,它可以将Hashtable转换为OrderedDictionary

PS C:\Users\zippy> ([ordered]@{}).GetType()

IsPublic IsSerial Name                                     BaseType
-------- -------- ----                                     --------
True     True     OrderedDictionary                        System.Object

所以我的问题是,如果 [ordered] 不是类型加速器,它是什么?

4

2 回答 2

3

不幸[ordered]的是有点失常。它既不是类型也不是加速器。它只存在于解析器中,并被视为有关如何创建哈希表的提示(即不要使用哈希表,而是使用有序字典。)将其视为 .net 属性,但它不是:D

于 2012-09-13T01:53:44.530 回答
0

使用以下命令:

Trace-Command -Name TypeConversion -Expression {([ordered]@{}).gettype()} -PSHost

让我想象一下,解释器尝试在加载的程序集中递归匹配类型并完成匹配 OrderedDictionary,这只是一个假设。

于 2012-05-14T19:54:40.903 回答