对于聪明人来说,劝告是多余的;对于愚昧人来说,劝告是不够的——莫里哀
拓展函数的定义:
1 | fun String.delBlank() = this.filter { !Character.isWhitespace(it) } |
以及:
1 | fun Int?.default(i: Int = 0) = i |
使用:
1 | fun String.delBlank() = this.filter { !Character.isWhitespace(it) } |
效果:
对于聪明人来说,劝告是多余的;对于愚昧人来说,劝告是不够的——莫里哀
拓展函数的定义:
1 | fun String.delBlank() = this.filter { !Character.isWhitespace(it) } |
以及:
1 | fun Int?.default(i: Int = 0) = i |
使用:
1 | fun String.delBlank() = this.filter { !Character.isWhitespace(it) } |
效果: