closurewithstaticvariablesbug.groovy

来自「大名鼎鼎的java动态脚本语言。已经通过了sun的认证」· GROOVY 代码 · 共 33 行

GROOVY
33
字号
package groovy.bugsimport org.codehaus.groovy.classgen.TestSupport/** * @version $Revision: 1.5 $ */class ClosureWithStaticVariablesBug extends TestSupport {        static def y = [:]        void testBug() {        def c = { x ->            return {                def foo = Cheese.z                println foo                assert foo.size() == 0                println y                assert y.size() == 0                return 6            }        }        def c2 = c(5)        def answer = c2()        assert answer == 6    }}class Cheese {    public static z = [:]}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?