Groovy 和 Groovy++,它们有不同吗?
我最近知道groovy++已经发布了,Groovy和Groovy++的主要区别是什么?
i recently came to know that groovy++ have been released, what is the major difference is in Groovy and Groovy++?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
从 groovy++ 页面 http://code.google.com/p/groovypptest/
Groovy++ 是 Groovy 的静态类型扩展编程语言。除了标准 Groovy 的所有优点之外,它还添加了许多功能
From the groovy++ page http://code.google.com/p/groovypptest/
Groovy++ is statically typed extension of Groovy programming language. Additionally to all goodies of standard Groovy it adds a lot of functionality
此处有一篇关于 Groovy++ 为 Groovy 带来了什么的好文章。它包括基准测试结果,因此您可以看到与 Groovy 和直接 Java 相比的性能差异。
There is a good article on what Groovy++ brings to Groovy here. It includes benchmark results, so you can see the performance difference vs. Groovy and straight Java.
Groovy++ 是核心 Groovy 1.x 语言的扩展。将 GroovyPP.jar 文件放入 Groovy 库目录中,在代码中的 package 关键字前面添加 @Typed,然后像在核心 Groovy 中一样运行代码。它推断类型,并且运行得更快!
Groovy++ is an extension to the core Groovy 1.x language. You drop the GroovyPP.jar file into the Groovy library directory, add @Typed in front of the package keyword in your code, then run your code just as you would in core Groovy. It infers the types, AND runs faster!