显示导入包的名称,但被划掉

发布于 2024-12-18 21:23:01 字数 109 浏览 1 评论 0原文

我将 xercesImpl.jar 导入到我的 Android 项目中。

当我使用它时它似乎能识别它(即列出所有可用的方法),但名称被划掉了。有谁知道这是为什么?

I imported the xercesImpl.jar into my Android project.

It seems to recognize it when I use it (i.e. lists all available methods), but the names are crossed out. Does anyone know why this is?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜心小果奶 2024-12-25 21:23:01

因为类或其方法是 @Deprecated< /代码>

@Deprecated 注释表示标记的元素已已弃用,不应再使用。每当程序使用带有 @Deprecated 注释的方法、类或字段时,编译器都会生成警告。当某个元素被弃用时,还应该使用 Javadoc @deprecated 标记对其进行记录,如以下示例所示。在 Javadoc 注释和注释中使用“@”符号并非巧合 — 它们在概念上是相关的。另请注意,Javadoc 标记以小写“d”开头,注释以大写“D”开头。

http://docs.oracle.com/javase/tutorial/java/javaOO /annotations.html

Because the class or its methods are @Deprecated.

The @Deprecated annotation indicates that the marked element is deprecated and should no longer be used. The compiler generates a warning whenever a program uses a method, class, or field with the @Deprecated annotation. When an element is deprecated, it should also be documented using the Javadoc @deprecated tag, as shown in the following example. The use of the "@" symbol in both Javadoc comments and in annotations is not coincidental—they are related conceptually. Also, note that the Javadoc tag starts with a lowercase "d" and the annotation starts with an uppercase "D".

http://docs.oracle.com/javase/tutorial/java/javaOO/annotations.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文