StackOverflow 文档 PowerShell 教程 哈希表 按键访问哈希表值 按键访问哈希表值 Created: November-22, 2018 定义哈希表并通过密钥访问值的示例 $hashTable = @{ Key1 = 'Value1' Key2 = 'Value2' } $hashTable.Key1 #output Value1 访问具有属性名称的无效字符的键的示例: $hashTable = @{ 'Key 1' = 'Value3' Key2 = 'Value4' } $hashTable.'Key 1' #Output Value3 创建哈希表哈希表