我想定义一个函数,它接受另一个函数(闭包)作为参数。第二个函数应该接受 1 个参数。
目前,我只有一个简单的签名:
def func1(func2) {
func2("string")
}
有没有办法明确指定,func2
应该接受 1 个参数(或更少)?
我想定义一个函数,它接受另一个函数(闭包)作为参数。第二个函数应该接受 1 个参数。
目前,我只有一个简单的签名:
def func1(func2) {
func2("string")
}
有没有办法明确指定,func2
应该接受 1 个参数(或更少)?
不在 的定义中func1
,但您可以在运行时检查闭maximumNumberOfParameters
包,如下所示:
def func1( func2 ) {
if( func2.maximumNumberOfParameters > 1 ) {
throw new IllegalArgumentException( 'Expected a closure that could take 1 parameter or less' )
}
func2( 'string' )
}
测试成功:
def f2 = { a -> "returned $a" }
assert func1( f2 ) == 'returned string'
和失败:
def f3 = { a, b -> "returned $a" }
try {
func1( f3 )
assert true == false // Shouldn't get here
}
catch( e ) {
assert e.message == 'Expected a closure that could take 1 parameter or less'
}