खोज…


@CompileStatic

एक कोड को संकलित करने में सक्षम बनाता है। इसके बाइटकोड जावा के करीब होंगे, इस प्रकार बेहतर प्रदर्शन होगा, हालांकि कुछ गतिशील सुविधाएँ उपलब्ध नहीं होंगी।

@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
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow