closurewithstaticvariablesbug.groovy
来自「Groovy动态语言 运行在JVM中的动态语言 可以方便的处理业务逻辑变化大的业」· 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 + -
显示快捷键?