美文网首页kotlin
10.字符串模板

10.字符串模板

作者: 写代码的向日葵 | 来源:发表于2019-09-24 21:43 被阅读0次
    fun main(args: Array<String>) {
        val resullt = createDiary("天安门")
        println(resullt)
    }
    fun createDiary(place:String):String{
        //result="今天天气晴朗,万里无云,我们去"+place+"游玩,首先映入眼帘的是"+place+""+place.length+"个镏金大字"
        val result="天气晴朗,万里无云,我们去${place}游玩,首先映入眼帘的是${place}${place.length}个镏金大字"
        return result
    }
    

    相关文章

      网友评论

        本文标题:10.字符串模板

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