函数 函数定义需要 => 符号 val fun1 = (x: Int, y: Int) => x + y 方法 def test(f: (Int, Int) => Int): Int = { f(3, 3) }