Kotlin(二) 函数定义

时间:2022-07-22 23:05:03

1.不带参数,不返回值的函数

  fun sum(){}

2.带参数,不带返回值的函数

  fun sum(a:Int){}

3.带参数,带返回值的函数

  fun sum(a:Int,b:Int) : Int{ return a+b}

4.将表达式作为函数体、返回值类型自动推断的函数

  fun sum(a:Int,b:Int) = a+b

5.函数返回无意义的值

  fun println(a: Int, b: Int) : Unit{ println("sum of $a and $b is ${a + b}") }

  Unit 返回类型可以省略,比如上述方法可写成:

  fun println(a: Int, b: Int) { println("sum of $a and $b is ${a + b}") }