-
8.5 Kotlin中的函数
-
首先,我们来看下Kotlin中函数的概念。#### 函数声明
Kotlin 中的函数使用 fun 关键字声明
fun double(x: Int): Int { return 2*x }
函数用法
调用函数使用传统的方法
```kotlin fun test() { val doubleTwo = double(2) println("double(2) = $doubleTwo") }
输出:double(2) = 4
调用成员函数使用点表示法
object FPBasics { fun double(x: Int): Int { return 2 * x } fun test() { val doubleTwo = double(2) println("double(2) = $doubleTwo") } } fun main(args: Array<String>) { FPBasics.test() }
我们这里直接用object对象FPBasics来演示。
- 留下你的读书笔记
- 你还没登录,点击这里
-
用户笔记留言