수색…
폐쇄시 메모하기
Groovy 1.8 이후 memoize()
에서 편리한 memoize()
메소드가 추가되었습니다.
// normal closure
def sum = { int x, int y ->
println "sum ${x} + ${y}"
return x + y
}
sum(3, 4)
sum(3, 4)
// prints
// sum 3 + 4
// sum 3 + 4
// memoized closure
def sumMemoize = sum.memoize()
sumMemoize(3, 4)
// the second time the method is not called
// and the result it's take from the previous
// invocation cache
sumMemoize(3, 4)
// prints
// sum 3 + 4
메소드에 메모하기
그루비 이후 2.2 groovy.transform.Memoized
주석 단순히 추가하는 편리한 memoize 방법에 추가됩니다 @Memoized
주석 :
import groovy.transform.Memoized
class Calculator {
int sum(int x, int y){
println "sum ${x} + ${y}"
return x+y
}
@Memoized
int sumMemoized(int x, int y){
println "sumMemoized ${x} + ${y}"
return x+y
}
}
def calc = new Calculator()
// without @Memoized, sum() method is called twice
calc.sum(3,4)
calc.sum(3,4)
// prints
// sum 3 + 4
// sum 3 + 4
// with @Memoized annotation
calc.sumMemoized(3,4)
calc.sumMemoized(3,4)
// prints
// sumMemoized 3 + 4
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow