如何在运行时判断 Java 1.4 类型或成员已被弃用?
在 Java 6 中,我可以使用这样的技术:
@Deprecated
public final class Test {
public static void main(String[] args) {
System.out.println(Test.class.isAnnotationPresent(Deprecated.class));
}
}
确定某个类型是否已弃用。在 1.4 中是否有任何方法可以通过旧式(基于 Javadoc)弃用来做到这一点?
In Java 6 I can use a technique like this:
@Deprecated
public final class Test {
public static void main(String[] args) {
System.out.println(Test.class.isAnnotationPresent(Deprecated.class));
}
}
to decide if a type is deprecated. Is there any way at all to do this in 1.4 with the old style (Javadoc-based) deprecation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您无法对 javadoc 标签进行此类检查。好吧,如果您分发源代码,则可以加载源文件并解析它的
@deprecated
标记,但这并不是更好的选择。Java5 之前的指示方式是使用标记接口。您可以定义自己的:
并让已弃用的类实现它。当然,您不能在方法上使用它。
然后检查是否
Deprecated.class.isAssignableFrom(Test.class)
。但弃用纯粹是指示性概念,不应在运行时用于区分行为。
You can't make such a check on javadoc tags. Well, you can, if you distribute your source code, load the source file and parse it for the
@deprecated
tag, but this is not preferable.The pre-Java5 way of indicating something is by using a marker interface. You can define your own:
and make deprecated classes implement it. You cannot use it on methods, of course.
And then check whether
Deprecated.class.isAssignableFrom(Test.class)
.But deprecation is a purely indicative notion and should not be used at run-time to differentiate behaviour.
不,没有,因为 JavaDoc 是注释,因此在运行时不可用。
No there is not, as JavaDoc is a comment and as such not available at runtime.
@deprecated标签只被编译器使用,不会放入编译后的java字节码中,所以编译后你无法检测到它。
你想做什么?
The @deprecated tag is only used by the compiler but not put in the compiled java byte code, so you cannot detect it after compilation.
What is it you want to do?
事实上,你可以。
之前的源代码,无论是否使用 @deprecated JavaDoc 标记进行编译,都会生成几个字节不同的类文件
:
相同的 1.5版本 com/javase/specs/jvms/se7/html/jvms-4.html" rel="nofollow noreferrer">JVM 规范,第 4 章,有一个
Deprecated
属性 (§4.7.15)在ClassFile
结构中。有一些工具能够确定一个类是否已被弃用:
您可以继续自己实现
ClassFile
结构,或者,如果您不反对 GPLv2,请查看org.gjt.jclasslib.structs.AttributeInfo
类。Actually, you can.
The same pre-1.5 source code, compiled with or without the @deprecated JavaDoc tag, produces class files which differ in a couple of bytes:
vs
If you take a look at the JVM Specification, Chapter 4, there's a
Deprecated
attribute (§4.7.15) in theClassFile
structure.There're tools capable to determine whether a class is deprecated or not:
You can either go ahead and implement the
ClassFile
structure yourself or, if you have nothing against GPLv2, take a look atorg.gjt.jclasslib.structures.AttributeInfo
class.注释从 1.5 版本开始可用,因此对于 1.4 及之前的版本来说这是不可能的
annotations are available since version 1.5, so that is not possible for 1.4 and previous