Groovy允许使用前端页面中的字符串做一些不错的事情,例如:${"hello".capitalize()}
如何向String
类添加新的自定义方法?喜欢:${"hello".custom()}
最佳答案
使用metaClass
String.metaClass.custom = { //dosomething }
参见http://www.groovyexamples.org/2010/07/19/dynamically-add-properties-to-a-class/
关于groovy - 扩展Groovy String类,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10357092/