Kotlin函数

简介: Kotlin函数

一、函数定义

 
/*
关键字    函数名          参数类型   返回值类型
 ↓        ↓                ↓       ↓      */
fun helloFunction(name: String): String {
    return "Hello $name !"
}/*   ↑
   花括号内为:函数体
*/

简写

fun helloFunction(name: String): String = "Hello $name !"
fun helloFunction(name: String) = "Hello $name !"

二、函数调用

helloFunction("Kotlin")
helloFunction(name = "Kotlin")

三、函数默认参数

 
fun createUser(
    name: String,
    age: Int,
    gender: Int = 1,
    friendCount: Int = 0,
    feedCount: Int = 0,
    likeCount: Long = 0L,
    commentCount: Int = 0
) {
    //..
}
 
fun createUser(
    name: String,
    age: Int,
    gender: Int = 1,
    friendCount: Int = 0,
    feedCount: Int = 0,
    likeCount: Long = 0L,
    commentCount: Int = 0
) {
    //..
}

有默认值得参数可以不传

 
createUser(
    name = "Tom",
    age = 30,
    commentCount = 3285
)
相关文章
|
5天前
|
安全 Kotlin
Kotlin - 作用域函数
Kotlin - 作用域函数
|
20天前
|
Kotlin
Kotlin教程笔记(21) -高阶函数与函数引用
Kotlin教程笔记(21) -高阶函数与函数引用
29 2
Kotlin教程笔记(21) -高阶函数与函数引用
|
24天前
|
安全 Kotlin
Kotlin教程笔记(23) -作用域函数
Kotlin教程笔记(23) -作用域函数
|
9天前
|
Kotlin
Kotlin - 高阶函数与函数引用
Kotlin - 高阶函数与函数引用
21 3
Kotlin - 高阶函数与函数引用
|
17天前
|
Kotlin
Kotlin教程笔记(21) -高阶函数与函数引用
Kotlin教程笔记(21) -高阶函数与函数引用
22 1
Kotlin教程笔记(21) -高阶函数与函数引用
|
3天前
|
IDE 开发工具 Kotlin
Kotlin - 函数与Lambda表达式
Kotlin - 函数与Lambda表达式
|
6天前
|
Kotlin
Kotlin教程笔记(21) -高阶函数与函数引用
Kotlin教程笔记(21) -高阶函数与函数引用
|
6天前
|
安全 Kotlin
Kotlin教程笔记(23) -作用域函数
Kotlin教程笔记(23) -作用域函数
|
9天前
|
安全 Kotlin
Kotlin - 作用域函数
Kotlin - 作用域函数
22 3
|
11天前
|
IDE 开发工具 Kotlin
Kotlin - 函数与Lambda表达式
Kotlin - 函数与Lambda表达式