标签: scala
谁能向我解释匿名函数如何通过一种具有与函数相同签名的方法转换为特征。示例:
trait TraitA{ def pow2(n:Int):Long } val traitA:TraitA = (n:Int)=>n*n