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 Modifier and Type Class 描述 class
UnsupportedClassVersionError
当Java虚拟机尝试读取类文件并确定文件中的主要和次要版本号不受支持时抛出。Methods in java.lang that throw ClassFormatError Modifier and Type 方法 描述 protected Class<?>
ClassLoader. defineClass(byte[] b, int off, int len)
protected Class<?>
ClassLoader. defineClass(String name, byte[] b, int off, int len)
将字节数组转换为类别为Class
的实例。protected Class<?>
ClassLoader. defineClass(String name, byte[] b, int off, int len, ProtectionDomain protectionDomain)
将字节数组转换为类别为Class
的实例,并给出了ProtectionDomain
。protected Class<?>
ClassLoader. defineClass(String name, ByteBuffer b, ProtectionDomain protectionDomain)
一个转换ByteBuffer
成类的实例Class
,与给定ProtectionDomain
。 -
Uses of ClassFormatError in java.lang.reflect
Subclasses of ClassFormatError in java.lang.reflect Modifier and Type Class 描述 class
GenericSignatureFormatError
当需要解释类型,方法或构造函数的通用签名信息的反射方法遇到语法错误的签名属性时抛出。
-