本文介绍PowerShell自定义函数中使用参数集时,怎么设置系统自动识别参数的数据类型。
识别参数类型的一个好处就是,在使用参数集时,不需要每次都指定参数名称了。
请看下面这个Test-Binding函数。这个PowerShell函数在设置参数集的时候,为参数集中的第一个参数设置了数据类型,这样在调用函数时,就可以自动判断一个参数值它应该赋给哪个参数了。
function Test-Binding { [CmdletBinding(DefaultParameterSetName='Name')] param( [Parameter(ParameterSetName='ID', Position=0, Mandatory=$true)] [Int] $id, [Parameter(ParameterSetName='Name', Position=0, Mandatory=$true)] [String] $name ) $set = $PSCmdlet.ParameterSetName “You selected $set parameter set” if ($set -eq ‘ID') { “The numeric ID is $id” } else { “You entered $name as a name” } }
PS> Test-Binding -Name hallo You selected Name parameter set You entered hallo as a name PS> Test-Binding -Id 12 You selected ID parameter set The numeric ID is 12 PS> Test-Binding hallo You selected Name parameter set You entered hallo as a name PS> Test-Binding 12 You selected ID parameter set The numeric ID is 12
关于PowerShell函数参数集自动识别参数数据类型,本文就介绍这么多,希望对您有所帮助,谢谢!
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:notice#nhooo.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。