Skip to content

Instantly share code, notes, and snippets.

@e2kaneko
Created September 24, 2012 07:57
Show Gist options
  • Save e2kaneko/3774852 to your computer and use it in GitHub Desktop.
Save e2kaneko/3774852 to your computer and use it in GitHub Desktop.
GroovyのClosure(クロージャ)スコープ(ローカル変数の束縛)
package com.e2info.groovy
a = "xxx"
def method(){
def a = "x_x"
return { println a }
}
a = "xxx"
println a
def c = method();
c()
/*
xxx
x_x
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment