Groovy - AST 转换,一个实际示例
AST 转换 在 Groovy 中实现。使用 AST 转换的实际示例是什么?
AST Transformations are implemented in Groovy. What's a practical example of using an AST Transformation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
此页面提供了如何使用的实际示例:
@Singleton、@Lazy、@Immutable、@Delegate、@Newify、@Category、@Mixin、@PackageScope
This page has practical examples of how to use:
@Singleton, @Lazy, @Immutable, @Delegate, @Newify, @Category, @Mixin, @PackageScope
类似场景:
请查看我的博客文章 AST AOP 和 AST 参数不为空
希望这有帮助!
Scenarios like:
Take a look at my blog post at AST AOP and AST Param not null
Hope this helps!
该页面提供了大多数使用 AST 转换的实际示例。我经常使用 @Delegate 委托给另一个类或 @Lazy 进行延迟加载。 @Grab 非常适合从 Maven/ivy 存储库中提取依赖项。所有这些都基于 AST 转换,并且是核心语言的一部分。
您也可以直接使用转换,但您想要的大部分内容都已经构建好了。您可以用其他语言做您可能想用 AOP 做的事情。
Most of the practical examples of using the AST transformations are provided on that page. I've often used @Delegate to delegate to another class or @Lazy for lazy loading. @Grab is great for pulling in dependencies from a Maven/ivy repository. All of those are based on AST transformations and are part of the core language.
You can use transformations directly too but most of the stuff you would want them for is already built. You can do things that you might want to do with AOP in other languages.