Will groovy (grails) give you compile time checking like java?

后端 未结 5 1340
借酒劲吻你
借酒劲吻你 2021-02-20 18:12

Will groovy (grails) give you compile time checking like java?

If you always specify the type, will that change things much?

5条回答
  •  既然无缘
    2021-02-20 18:53

    No.

    It was designed to be a dynamic-typing programming languages which is pretty much the opposite as compile time checking.

    You'll have to add more unit tests instead.

提交回复
热议问题