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

后端 未结 5 1527
感动是毒
感动是毒 2021-02-20 18:20

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:40

    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.

提交回复
热议问题