groovy
AST-transformaties
Zoeken…
@CompileStatic
Hiermee kan een code statisch worden gecompileerd. De bytecode zal dichter bij die van Java liggen en dus betere prestaties leveren, hoewel sommige dynamische functies niet beschikbaar zullen zijn.
@groovy.transform.CompileStatic
class ListMath {
def countSize(List<String> strings) {
strings.collect { it.size() }.sum()
}
}
assert new ListMath().countSize(["a", "bb", "ccc"]) == 6
Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow