groovy
AST-Transformationen
Suche…
@CompileStatic
Ermöglicht die statische Kompilierung eines Codes. Sein Bytecode wird näher an Java liegen und somit eine bessere Leistung bieten, obwohl einige dynamische Funktionen nicht verfügbar sind.
@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
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow