Recherche…


@ CompileStatic

Permet de compiler statiquement un code. Son bytecode sera plus proche de celui de Java, ce qui améliorera ses performances, même si certaines fonctionnalités dynamiques ne seront pas disponibles.

@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
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow