抛出 ClassFormatError 的 java.lang 中的方法 |
protected Class<?> |
ClassLoader.defineClass(byte[] b, int off, int len) 已过时。 由 defineClass(String, byte[], int, int) 取代 |
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) 使用可选的 ProtectionDomain 将一个字节数组转换为 Class 类的实例。 |
protected Class<?> |
ClassLoader.defineClass(String name, ByteBuffer b, ProtectionDomain protectionDomain) 使用可选的 ProtectionDomain 将 ByteBuffer 转换为 Class 类的实例。 |