标记为已弃用的第三方类
我有一些带有类 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
@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.
您无法在不编译的情况下将其标记为已弃用,因此需要源代码
You cannot mark it as deprecated without compiling so will need the source
或者,使用 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".
当然,可以更改类文件,将已弃用的注释添加到类中。 (但我不熟悉执行此操作所需的工具。)
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.)