gpt4 book ai didi

powershell - Powershell 中的哈希表

转载 作者:行者123 更新时间:2023-12-04 16:56:14 25 4
gpt4 key购买 nike

我正在 PowerShell 中开发应用程序。我将变量存储在哈希表中。如何将订单保留在哈希表中?我希望顺序与填充哈希表时的顺序相同。

最佳答案

哈希表本质上不维护值的顺序。
网上已经有一些解决方法。检查这些

http://www.tellingmachine.com/post/2009/01/When-PowerShell-hash-table-magic-backfires.aspx

http://huddledmasses.org/powershell-and-hashtable-oddities/

或者试试

PS C:\WINDOWS\system32> $OrderedList = New-Object System.Collections.Specialized.OrderedDictionary
PS C:\WINDOWS\system32> $OrderedList
PS C:\WINDOWS\system32> $OrderedList.Add("Name","Ravi")
PS C:\WINDOWS\system32> $OrderedList.Add("Age","30")
PS C:\WINDOWS\system32> $OrderedList

Name Value
---- -----
Name Ravi
Age 30

关于powershell - Powershell 中的哈希表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4264752/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com