标记为已弃用的第三方类

发布于 2024-10-21 03:41:59 字数 171 浏览 3 评论 0原文

我有一些带有类 FooBar 的第三方库 Foo 。我认为 FooBar 类设计得很糟糕。我想编写自己的 MyBar 作为适配器模式。我可以将原始 FooBar 标记为 @Deprecated 而不修改其代码吗?

I have some third party library Foo with class FooBar. I think that class FooBar is badly designed. I want to write my own MyBar as adapter pattern. Can I mark the original FooBar as @Deprecated without modifying its code?

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

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

发布评论

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

评论(4

゛清羽墨安 2024-10-28 03:41:59

@deprecated 应添加到源中以将类/方法标记为已弃用。所以你不能弃用别人的代码。

但是,如果您有更好的替代方案,并且希望在项目中将其用作标准,那么您可以通过其他方式强加此标准,如 checkstyle 例如。

@deprecated should be added to the source to flag the class/method as deprecated. So you cannot deprecate someone else's code.

However if you have a better alternative that you prefer to use in your project as a standard, then you can impose this standard in other ways, as a rule in checkstyle for instance.

风追烟花雨 2024-10-28 03:41:59

您无法在不编译的情况下将其标记为已弃用,因此需要源代码

You cannot mark it as deprecated without compiling so will need the source

人│生佛魔见 2024-10-28 03:41:59

或者,使用 IDE 的“查找引用”功能来查找代码使用违规类的所有位置。或者使用“grep”。

As an alternative, use your IDE's "find references" function to find all places where your code uses the offending class. Or use "grep".

¢好甜 2024-10-28 03:41:59

当然,可以更改类文件,将已弃用的注释添加到类中。 (但我不熟悉执行此操作所需的工具。)

Of course, one could change the class file adding the deprecated annotation to the class. (But I'm not proficient with the tools needed to do this.)

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