Uses of Class
java.lang.ClassFormatError
-
Packages that use ClassFormatError 软件包 描述 java.lang 提供对Java编程语言设计至关重要的类。java.lang.reflect 提供用于获取有关类和对象的反射信息的类和接口。 -
-
Uses of ClassFormatError in java.lang
Subclasses of ClassFormatError in java.lang 变量和类型 类 描述 class
UnsupportedClassVersionError
当Java虚拟机尝试读取类文件并确定不支持文件中的主要版本号和次要版本号时抛出。Methods in java.lang that throw ClassFormatError 变量和类型 方法 描述 protected 类<?>
ClassLoader. defineClass(byte[] b, int off, int len)
protected 类<?>
ClassLoader. defineClass(String name, byte[] b, int off, int len)
将字节数组转换为类类
的实例。protected 类<?>
ClassLoader. defineClass(String name, byte[] b, int off, int len, ProtectionDomain protectionDomain)
将字节数组转换为类类
的实例,给定的为ProtectionDomain
。protected 类<?>
ClassLoader. defineClass(String name, ByteBuffer b, ProtectionDomain protectionDomain)
使用给定的ProtectionDomain
将ByteBuffer
转换为类类
的实例。 -
Uses of ClassFormatError in java.lang.reflect
Subclasses of ClassFormatError in java.lang.reflect 变量和类型 类 描述 class
GenericSignatureFormatError
当需要解释类型,方法或构造函数的通用签名信息的反射方法遇到语法错误的签名属性时抛出。
-