📜  powershell 添加到列表 - Shell-Bash (1)

📅  最后修改于: 2023-12-03 15:33:46.966000             🧑  作者: Mango

在Powershell中添加元素到列表

在Powershell中,列表(List)是一种非常有用的数据结构,能够帮助你轻松地管理元素。在本文中,我们将介绍如何在Powershell中添加元素到列表中。

创建一个空的列表

在Powershell中,使用以下语法可以创建一个空的列表:

$list = New-Object System.Collections.Generic.List[string]

这里创建的空列表是 System.Collections.Generic.List 类型的,泛型参数 [string] 表示该列表只包含字符串类型的元素。你可以根据需要改变列表元素类型,例如 [int][bool] 等。

添加元素到列表中

Powershell中,使用以下语法可以将元素添加到列表中:

$list.Add("element")

这里的 "element" 表示要添加的元素,可以是任何字符串类型的值。你也可以使用变量代替 "element",例如:

$element = "hello world"
$list.Add($element)

此时,$list 列表中就包含了一个元素 "hello world"

示例

以下是一个示例代码片段,演示如何创建一个列表并向其中添加元素:

# 创建一个空列表
$list = New-Object System.Collections.Generic.List[string]

# 添加元素到列表中
$list.Add("apple")
$list.Add("banana")
$list.Add("orange")

# 输出列表中的元素
foreach ($element in $list) {
    Write-Host $element
}

输出结果为:

apple
banana
orange

以上就是在Powershell中添加元素到列表的方法,希望对你有所帮助!