变量 $a
和 $b
的区别是什么?
$a = (Get-Date).DayOfWeek
$b = Get-Date | Select-Object DayOfWeek
我试着查过了
$a.GetType
$b.GetType
MemberType : Method
OverloadDefinitions : {type GetType()}
TypeNameOfValue : System.Management.Automation.PSMethod
Value : type GetType()
Name : GetType
IsInstance : True
MemberType : Method
OverloadDefinitions : {type GetType()}
TypeNameOfValue : System.Management.Automation.PSMethod
Value : type GetType()
Name : GetType
IsInstance : True
尽管这些变量的输出看起来不同,但似乎没有什么区别。