0

我有一个简单的 PowerShell 函数

function Foo($a, $b){
  '$a = ' + $a
  '$b = ' + $b
}

我通过调用来调用它

Foo("dogs", "cat");

到目前为止我读过的所有内容都表明预期的输出是

$a = dogs
$b = cats

我实际看到的是:

$a = dogs cat
$b =

如果我将我的函数重写为:

function Foo($a, $b){
  '$a is ' + $a.GetType().Name;
  '$b = ' + $b.GetType().Name;
}

输出是:

$a is Object[]
You cannot call a method on a null-valued expression.
At C:\WCMTeam\Percussion\Notifier\foo.ps1:4 char:7
+       '$b = ' + $b.GetType().Name;
+       ~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidOperation: (:) [], RuntimeException
    + FullyQualifiedErrorId : InvokeMethodOnNull

显然 $a 和 $b 被组合成一个数组。我在做什么来导致这种情况,我应该如何改变它以获得我的预期结果?

4

1 回答 1

5

你应该使用调用你的函数

Foo "dogs" "cats"

,用于在 Powershell 中分隔数组元素,所以

Foo "dogs", "cats"

Foo使用单个数组参数调用,该参数分配给$a.

于 2013-04-04T19:42:30.623 回答