Scala学习之路
object he7 {
def main(args: Array[String]): Unit = {
def func( a:Int,b:Int,func1:(Int,Int)=>Int):Unit={
func1(a,b)
}
val sum=(a:Int,b:Int)=>{
a+b
}
/*def sum(a:Int,b:Int):Int={
a+b
}*/
println(func(10,20,sum))
}
}
输出是()
object he7 {
def main(args: Array[String]): Unit = {
def func( a:Int,b:Int,func1:(Int,Int)=>Int):Int={
func1(a,b)
}
val sum=(a:Int,b:Int)=>{
a+b
}
/*def sum(a:Int,b:Int):I
Scala学习之路最先出现在Python成神之路。
版权声明:
作者:zhangchen
链接:https://www.techfm.club/p/16252.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。
共有 0 条评论