特牛生活网

隐式函数、隐式类_隐式表示和隐函数-CSDN博客

网友收藏
文章浏览阅读188次。隐式函数object ImpliDemo { implicit val age:Int =100 def opt(x:Int,y:Int)(implicit f:(Int,Int)=>Int)={ f(x,y) } def opt1(x:Int,y:Int)(implicit f:(Int,Int)=>Int)={ f(x,y) } def main(args: Array[String]): Unit = { // implicit_隐式表示和隐函数