Buscar..


@CompileStatic

Permite que un código sea compilado estáticamente. Su bytecode estará más cerca de Java, por lo que tendrá un mejor rendimiento, aunque algunas características dinámicas no estarán 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
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow