美文网首页kotlin
8.四种函数

8.四种函数

作者: 写代码的向日葵 | 来源:发表于2019-09-24 21:43 被阅读0次
    • 函数计算机中执行程序的单元
    fun main(args: Array<String>) {
       syaHello()
       sayHello("张三")
       println(getLength("张三"))
       println(get())
    }
    
    /**
    * 无参无返回
    */
    fun syaHello() {
       println("hello")
    }
    
    /**
    * 有参无返回值
    */
    fun sayHello(name: String) {
       println("hello" + name)
    }
    
    /**
    * 有参有返回值
    */
    fun getLength(name: String): Int {
       return name.length
    }
    
    /**
    * 无参有返回值
    */
    fun get(): String {
       return "hello"
    }
    

    相关文章

      网友评论

        本文标题:8.四种函数

        本文链接:https://www.haomeiwen.com/subject/rrcpuctx.html