本文介绍了Eclipse错误:间接引用所需的.class文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在Eclipse中出现错误。这个错误信息是什么意思: 类型iglu.ir.TermVector无法解析。它是从必需的.class文件间接引用的。
解决方案
:你使用的类需要另一个不在类路径上的类。你应该确定(像Harry Joy所说)将所需的jar添加到类路径。
I got an error in Eclipse. What does this error message means:
The type iglu.ir.TermVector cannot be resolved. It is indirectly referenced from required .class files
解决方案
It means: "A class that you use needs another class that is not on the classpath." You should make sure (as Harry Joy suggests) to add the required jar to the classpath.
这篇关于Eclipse错误:间接引用所需的.class文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!