在下面的代码段中,为什么编译器会抱怨 map 属性而不是其他类型的属性:
import groovy.transform.CompileStatic
@CompileStatic
class TestMapInClosure {
Map amap = [:]
List alist = []
Integer intval = 0
Closure doFoo = {
this.amap['one'] = 'two' // !! [Static type checking] - No such property
this.alist.push(1)
this.intval += 5
}
}
this
如果我理解正确的话,闭包内部应该是指封闭类的实例。
注意:Groovy 版本:2.4.5