我有一个接受函数作为参数的方法。是否可以提取函数名称? e.g:
def plusOne(x:Int) = x+1
def minusOne(x:Int) = x+1
def printer(f: Int => Int) = println("Got this function ${f.getName}") //doesn't work of course
scala> printer(plusOne)
Got this function plusOne
scala> printer(minussOne)
Got this function minusOne
答案 0 :(得分:3)
不直接。请注意,也可以传递lambda而不是函数或方法名称。但您可能需要查看sourcecode库,这可能有助于您实现其中一些功能。例如:
val plusOne = (x: Int) => x + 1
val minusOne = (x: Int) => x + 1
def printer(fWithSrc: sourcecode.Text[Int => Int]) = {
val f = fWithSrc.value
println(s"Got this function ${ fWithSrc.source }. f(42) = ${ f(42) }")
}
由于隐式转换的工作方式,您无法像示例中那样直接使用def
版本。如果你有这个:
def plusOne(x: Int) = x + 1
然后你需要这个:
printer(plusOne _)
并且您还会在参数的字符串表示中看到_
。
请注意,它还会破坏lambda的类型推断,即你不能再写这个:
printer(_ * 2)
这是一种耻辱。