1
如何動態地將對象投射到以字符串形式給出的特定類。例如通過字符串將對象投射到特定類
def a = (ClassA) testService.getObject(xmlString)
我想這樣做
(grailsApplication.getClassForName(classString)) testService.getObject(xmlString)
但Groovy編譯器不喜歡投這種操作方式。