我应该关闭哪些编译器警告?

发布于 2024-08-17 10:40:06 字数 106 浏览 3 评论 0原文

我正在重构 java 1.3 遗留代码,大约 700 个类。 由于此代码中缺少泛型,我目前看到数千个警告,我应该禁用其中哪些警告?我不想讨论每一个警告,只是根据错误/警告对话框中显示的组的经验法则。

I am refactoring java 1.3 legacy code, around 700 classes.
Due to the lack of generics in this code I see currently thousands of warnings, which of them should I simply disable? I don't wan't to discuss of every single warning, just a rule of thumb in terms of groups displayed in eclipses the errors/warnings dialog.

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

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

发布评论

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

评论(3

情泪▽动烟 2024-08-24 10:40:06

忽略您不关心的警告...:)

我只会接受第一个警告...如果您不理解它,请研究它。一旦你理解了它,就决定是否忽略它。

重复直到完成:)

Ignore the warnings you don't care about... :)

I'd just take the first warning... if you don't understand it, research it. Once you understand it decide whether or not to ignore it.

Repeat until done :)

浴红衣 2024-08-24 10:40:06

首先抑制“未经检查/原始”警告。这应该可以解决与泛型相关的大部分问题

Start with suppressing "unchecked/raw" warnings. That should clear up most of the issues related to generics

橪书 2024-08-24 10:40:06

“你正在重构代码,对吧?如果你这样做......你应该重构所有代码以使用通用,直到你没有收到任何警告。你不这样做,你的重构还没有完成!

如果您确实需要警告,请抑制该警告,但要谨慎行事。

`You're refactoring the code, right? If you do that.. you should refactor all code to use generic until you don't get any warning. You don't do that, your refactoring is not finished!

Supress the warning if you really need it, but do it very sparingly.

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