java.lang.NoClassDefFoundError翻译

2014-11-23 22:09:42 · 作者: · 浏览: 0

http://www.w3.org/TR/html4/loose.dtd">




<br />NoClassDefFoundError (Java 2 Platform SE v1.4.2)<br />

<SCRIPT type="text/java script">
function windowTitle()
{
parent.document.title="NoClassDefFoundError (Java 2 Platform SE v1.4.2)";
}


















JavaTM 2 Platform
Std. Ed. v1.4.2








java.lang



Class NoClassDefFoundError



java.lang.Object
extended byjava.lang.Throwable
extended byjava.lang.Error
extended byjava.lang.LinkageError
extended byjava.lang.NoClassDefFoundError


All Implemented Interfaces:
Serializable





public class NoClassDefFoundError
extends LinkageError


Thrown if the Java Virtual Machine or a ClassLoader instance
tries to load in the definition of a class (as part of a normal method call
or as part of creating a new instance using the new expression)
and no definition of the class could be found.
当Java虚拟机或者ClassLoader实例试图加载一个类的定义(正常方式调用或者使用new表达式创建一个新的实例),
而未找到该类的定义时抛出。


The searched-for class definition existed when the currently
executing class was compiled, but the definition can no longer be
found.
当前执行类被编译时被搜索的类定义存在,但运行时不能获得。



Since:

JDK1.0