美文网首页
扩展函数Kotlin

扩展函数Kotlin

作者: ElonYanJ | 来源:发表于2018-12-01 10:46 被阅读3次
        fun MutableList<Int>.swap(index1: Int, index2: Int) {
            val tmp = this[index1] // “this” 对应该列表
            this[index1] = this[index2]
            this[index2] = tmp
        }
    

    相关文章

      网友评论

          本文标题:扩展函数Kotlin

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