powershell 数组的方法(Clear、ForEach、Where 等)在哪里定义?



根据关于PowerShell中数组的官方文档,为数组定义了几种方法,例如Clear(),ForEach(),Where()等。以下代码测试了这些方法:

$arr = 1..2
$arr.Clear()
$arr.Length
write "--------------------------------------------------"
$arr = 1..2
$arr.ForEach({$_ + 1})
write "--------------------------------------------------"
$arr = 65..90
$arr.Where({($_ % 2) -eq 0})

输出:

2
--------------------------------------------------
2
3
--------------------------------------------------
66
68
70
72
74
76
78
80
82
84
86
88
90

好!而且,像ForEach()这样的方法有许多重载,这里没有测试。

但是这些方法在哪里定义?我的意思是,包含这些方法定义的类是什么?据我所知,这些方法没有在 .net core 中定义。(我使用PowerShell 7)

Clear()是由System.Array实现的IList接口的一部分,是PowerShell中集合(System.Object[])的基本类型。

若要查看所有可用的本机方法,请使用:

$arr.PSObject.Methods
# or
Get-Member -InputObject $arr -MemberType Methods

但是:Where()ForEach()"魔术"方法是在 v4 中引入的,实际上是特定于 PowerShell 的扩展方法(作为ForEach-ObjectWhere-Object的高性能替代方案),在System.Management.Automation.EnumerableOps中定义。看看来源:

internal static object Where(IEnumerator enumerator, ScriptBlock expressionSB, WhereOperatorSelectionMode selectionMode, int numberToReturn)
internal static object ForEach(IEnumerator enumerator, object expression, object[] arguments)

你为什么说据我所知,这些方法没有在 .net core 中定义。(我使用 PowerShell 7)?真:

$PSVersionTable.PSVersion | Out-Default
$arr = 1..2
$arr.GetType() | Get-Member -MemberType Methods -Static
Major  Minor  Patch  PreReleaseLabel BuildLabel
-----  -----  -----  --------------- ----------
7      0      3

TypeName: System.Object[]
Name            MemberType Definition
----            ---------- ----------
AsReadOnly      Method     static System.Collections.ObjectModel.ReadOnlyCollection[T] …
BinarySearch    Method     static int BinarySearch[T](T[] array, int index, int length,…
Clear           Method     static void Clear(array array, int index, int length)
ConstrainedCopy Method     static void ConstrainedCopy(array sourceArray, int sourceInd…
ConvertAll      Method     static TOutput[] ConvertAll[TInput, TOutput](TInput[] array,…
Copy            Method     static void Copy(array sourceArray, array destinationArray, …
CreateInstance  Method     static array CreateInstance(type elementType, int length), s…
Empty           Method     static T[] Empty[T]()
Equals          Method     static bool Equals(System.Object objA, System.Object objB)
Exists          Method     static bool Exists[T](T[] array, System.Predicate[T] match)
Fill            Method     static void Fill[T](T[] array, T value), static void Fill[T]…
Find            Method     static T Find[T](T[] array, System.Predicate[T] match)
FindAll         Method     static T[] FindAll[T](T[] array, System.Predicate[T] match)
FindIndex       Method     static int FindIndex[T](T[] array, System.Predicate[T] match…
FindLast        Method     static T FindLast[T](T[] array, System.Predicate[T] match)
FindLastIndex   Method     static int FindLastIndex[T](T[] array, System.Predicate[T] m…
ForEach         Method     static void ForEach[T](T[] array, System.Action[T] action)
IndexOf         Method     static int IndexOf(array array, System.Object value), static…
LastIndexOf     Method     static int LastIndexOf(array array, System.Object value), st…
new             Method     System.Object[] new(int )
ReferenceEquals Method     static bool ReferenceEquals(System.Object objA, System.Objec…
Resize          Method     static void Resize[T]([ref] T[] array, int newSize)
Reverse         Method     static void Reverse(array array), static void Reverse(array …
Sort            Method     static void Sort(array array), static void Sort(array keys, …
TrueForAll      Method     static bool TrueForAll[T](T[] array, System.Predicate[T] mat…

相关内容

  • 没有找到相关文章

最新更新