标签: kotlin groovy
在Kotlin中,我可以使用扩展名,例如:
fun String.append(addValue: String): String { return this + addValue; }
Groovy中有类似的方法吗?