访问接口中定义的注释,在实现它的类中?
我正在使用java。我有一个接口,其中有一个带注释的方法。有没有办法在实现该接口的类中访问该注释?
谢谢。
编辑:抱歉,我应该说得更清楚:我正在使用反射来访问 Java 元素,并且我想知道如何访问实现接口的类中的注释(在其中声明注释的地方)。
I'm working with java. I have an interface that has an annotated method in it. Is there a way to access that annotation in a class implementing that interface?
Thanks.
Edit: sorry, I shoudl've been clearer: I'm using reflection to access elements of Java, and I'm wondering how to access the annotations in a class implementing an interface (where the annotation is declared).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当然。反射允许您检查注释是否存在。类、方法、参数级别都有方法:反射和注释
Sure. Reflection allows you to check for the presence of an annotation. There are methods at the class, method, paramter levels: reflection and annotations