try 表达式
var result = try{
Integer.parseInt("dog")
}catch{
case _ => 0
}finally{
println("excute")
}
match 表达式
val code = 3
var result = code match{
case 1 => "one"
case 2 => "two"
case _ => "others"
}
求值策略
- Call By Value
- 对函数实参求值,且仅求值一次
- Call By Name
- 函数实参每次在函数体内被用到时都会求值
def foo(x:Int,y: => Int):Int={
x * x
}
def loop():Int = loop
函数
(1)匿名函数
匿名函数定义格式 形参列表 => {函数体}
(2)柯里化函数
把具有多个参数的函数转换为一条函数链,每个节点上都是单一参数
def add(x:Int)(y:Int) = x + y
var add1 = add(1)_
add1(5)
def add2 = add(2)_
add2(6)
(3)尾递归
覆盖当前记录,而不是在栈中创建新的函数
@annotation.tailrec
def fun(n:Int,m:Int):Int={
if(n <= 0) m
else fun(n-1,m*n)
}
@annotation.tailrec
def fun1(n:Int,m:Int):Int={
if(n == 1) m
else fun(n-1,m+n)
}