鉴于这些 powershell 函数,其中 foo 将脚本块作为参数:
function bar($name)
{
"Hello World $name"
}
function foo([scriptblock]$fun={})
{
&$fun "Bart"
}
是否可以在函数 foo 中将函数 bar 指定为 $fun 而不是 {} 的默认值?
鉴于这些 powershell 函数,其中 foo 将脚本块作为参数:
function bar($name)
{
"Hello World $name"
}
function foo([scriptblock]$fun={})
{
&$fun "Bart"
}
是否可以在函数 foo 中将函数 bar 指定为 $fun 而不是 {} 的默认值?