gpt4 book ai didi

powershell - 在 Powershell 中导入类似 `import as ` 的模块

转载 作者:行者123 更新时间:2023-12-04 02:07:55 25 4
gpt4 key购买 nike

这就是我正在尝试做的事情 - 例如,在 Java 中,如果我想使用 ArrayList<>在我的程序中我只是写

...
import java.util.ArrayList
...

然后从那里我可以写ArrayList<String> arr = new ArrayList<String>...

另外,在 Python 中我可以,例如,写一些像

from numpy.random import randint

再一次,在我的程序中我可以只写 randint(something) .

在 PowerShell 中是否有等效的方法来执行此操作?我想使用 System.Collections.ArrayList , 但我在网上找不到任何语法。

最佳答案

使用 using namespace statement 引用命名空间:

using namespace System.Collections

那么在创建新对象时可以省略命名空间

$arr = New-Object ArrayList

关于powershell - 在 Powershell 中导入类似 `import <module> as <alias>` 的模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50909589/

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