Pass a function (with arguments) as a parameter in

2019-04-21 14:16发布

I've been successfully passing no-argument functions around in PowerShell using ScriptBlocks. However, I can't get this to work if the function has arguments. Is there a way to do this in PowerShell? (v2 preferably)

Function Add([int] $x, [int] $y)  
{ 
  return $x + $y 
}
Function Apply([scriptblock] $s)    
{ 
    write-host ($s.Invoke(1,2)) 
}

Then

Apply { Add } 

writes 0 to the console. Apply does invoke Add, but doesn't pass any arguments in (i.e. uses the default [int] values of 0 and 0)

3条回答
做个烂人
2楼-- · 2019-04-21 14:50

Don't you want to do something like this?

function Add([int] $x, [int] $y)  
{ 
    return $x + $y 
}

function Apply([scriptblock] $s)    
{ 
    Write-Host $s.Invoke($args)
}

Apply { Add 1 2}
查看更多
手持菜刀,她持情操
3楼-- · 2019-04-21 14:52

Ok, I found the answer here:

I wanted ${function:Add} rather than { Add } in the call to Apply.

查看更多
Anthone
4楼-- · 2019-04-21 15:02

There is a much cleaner way to do this using the PowerShell function provider. I needed to be able to run functions from other source files with variable numbers of arguments based on an XML file provided at run time.

In developing this I wrote a small "Hello World" tester in two source files which should be fairly self-explanatory (the magic line is "$x = (& $func $parm)"):

  1. "Hello.ps1" - The remote function

    function Hello ($in) {
     
        write-Host "Hello $in"
    }

  1. "Hello2.ps1" - The executing routine

    function exec-script ($file, $func, $parm) {
       
       Invoke-Expression $file    
       
       $x = (& $func $parm)
       
       $x
        
       }
    
    exec-script -file ".\Hello" -func "Hello" -parm "World"

查看更多
登录 后发表回答