Kotlin 扩展函数之扩展属性

Posted 安果移不动

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Kotlin 扩展函数之扩展属性相关的知识,希望对你有一定的参考价值。

Kotlin统计元音字母出现的个数

val String.numVowels
    get() = count  "aeiouy".contains(it) 


fun <T> T.easyPrint(): T 
    println(this)
    return this


fun main() 
    "The people‘s Republic of China".numVowels.easyPrint()

以上是关于Kotlin 扩展函数之扩展属性的主要内容,如果未能解决你的问题,请参考以下文章

Kotlin初识Kotlin之扩展函数与属性

Kotlin扩展函数 ② ( 扩展属性 | 为可空类型定义扩展函数 | 使用 infix 关键字修饰单个参数扩展函数的简略写法 )

Kotlin扩展函数总结 ★ ( 超类扩展函数 | 私有扩展函数 | 泛型扩展函数 | 扩展属性 | 定义扩展文件 | infix 关键字用法 | 重命名扩展函数 | 标准库扩展函数 )

Kotlin扩展函数总结 ★ ( 超类扩展函数 | 私有扩展函数 | 泛型扩展函数 | 扩展属性 | 定义扩展文件 | infix 关键字用法 | 重命名扩展函数 | 标准库扩展函数 )

Kotlin学习——扩展(扩展函数和属性以及伴生对象)

漫画:Kotlin 的扩展细节探究 | 鉴赏 Kotlin 的语言艺术!