什么是注解?简单来说?
在 Groovy++ 中,我经常听到“注释”这个术语。谁能简单地向我解释一下那是什么?
In Groovy++ I often hear of the term Annotations. Can anyone explain me what is that in simple terms?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
简而言之,这是一种标记一段代码的方法。但这不是 Groovy 特有的东西。
这些标签可以被其他应用程序用作元数据来执行识别单元测试、依赖项注入等任务,或者只是告诉某人某个方法已被弃用的方法。
这里是一些java文档的链接。
In short It's a way to label a piece of code. But it's not Groovy specific thing.
These labels can be used as meta-data by other applications to perform tasks like identifying unit test, dependency injection, or just a way to tell someone that a method is deprecated.
Here is a link to some java documentation.
一些帮助您入门的基本信息。
http://groovy.codehaus.org/Annotations+with+Groovy
Some basic info to get you started.
http://groovy.codehaus.org/Annotations+with+Groovy