我在eclipse项目的java代码中有以下导入
import org.jscience.*;
但是在编写代码时
Real r1 = new Real.valueOf(1);
我收到错误
Real cannot be resolved to a type
我很困惑为什么会这样,因为我正确导入(或者我相信)
另外需要注意的是,eclipse建议使用
import org.jscience.mathematics.number.Real;
但我试图避免将导入用于Jar中的完整类位置。
有什么想法吗?
提前致谢 马丁
答案 0 :(得分:6)
尝试
import org.jscience.mathematics.number.*;
由于
import org.jscience.*;
实际上只会从jscience
包中导入类而不是任何子包。
答案 1 :(得分:1)
如果我们假设您的导入没有抛出错误,请尝试导入g.jscience.mathematics.number.*
。