我成功编译了我的程序,但在尝试运行它时遇到了一个未定义的类错误。奇怪的是我不在myprogram中使用cern / colt / matrix / DoubleMatrix1D类(我用“grep”验证了这一点)。有人可以指点我正确的方向吗?感谢
$ javac -cp $(find ../resources/ -name "*.jar"|tr "\n" ":") myprogram.java
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
$ java myprogram
Exception in thread "main" java.lang.NoClassDefFoundError: cern/colt/matrix/DoubleMatrix1D
at java.lang.Class.getDeclaredMethods0(Native Method)
at java.lang.Class.privateGetDeclaredMethods(Class.java:2615)
at java.lang.Class.getMethod0(Class.java:2856)
at java.lang.Class.getMethod(Class.java:1668)
at sun.launcher.LauncherHelper.getMainMethod(LauncherHelper.java:494)
at sun.launcher.LauncherHelper.checkAndLoadMain(LauncherHelper.java:486)
Caused by: java.lang.ClassNotFoundException: cern.colt.matrix.DoubleMatrix1D
at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
at java.lang.ClassLoader.loadClass(ClassLoader.java:425)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
... 6 more
注:
答案 0 :(得分:0)
您不能在程序的源代码中直接/显式地使用该类。但你绝对做间接使用它。
例如:
它可能是您正在使用的某个类的内部字段的类型。
它可能是您正在使用的某个类的超类。
还有其他一些事情......
无论如何,底线是您的代码不会运行,除非您将包含缺少的类的JAR(或其他)放到运行时类路径上。
由于缺少的类是超类,因此JRE需要它,因为在创建子类的实例时它需要超类的构造函数的代码。