为什么IntelliJ不会在java代码中显示错误?

时间:2014-09-26 08:54:10

标签: intellij-idea

如何配置intelliJ来显示像eclipse这样的java代码中的错误? 请参见屏幕截图enter image description here

2 个答案:

答案 0 :(得分:2)

它确实显示了您期望的错误,如果您没有在类路径中拥有JUnit jar文件。

我创建了与您在IntelliJ中显示的完全相同的文件,它确实显示了错误:

enter image description here

你可能做的是你可能不小心将jar添加到了类路径中。

如图所示,查看External Libraries。如果那里没有JUnit,那么它确实缺失了。

现在我可以轻松地从IntelliJ添加JUnit jar,你会注意到External Libraries中的差异:

enter image description here

此处已添加External Libraries,错误消失。

enter image description here

答案 1 :(得分:0)

您几乎肯定已将junit库包含在IntelliJ项目配置中。

这很容易做到,因为IntelliJ对Add junit to classpath有快速操作(alt-enter)。

查看Settings - >图书馆/全球图书馆,你会在那里看到它。 :)

或者您可以直接查看相关模块上的Settings - >依赖性

要么,或者您正在使用的项目已经配置(可能通过maven?)以具有junit依赖性。