亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? classloader.java

?? 這是個開源的JAVA虛擬機,可以直接RUN jar或class文件, 是個國外人寫的.想了解JAVA底層的朋友不能不看~!
?? JAVA
?? 第 1 頁 / 共 3 頁
字號:
   * method. An implementation of this method in a subclass should get the   * class bytes of the class (if it can find them), if the package of the   * requested class doesn't exist it should define the package and finally   * it should call define the actual class. It does not have to resolve the   * class. It should look something like the following:<br>   *   * <pre>   * // Get the bytes that describe the requested class   * byte[] classBytes = classLoaderSpecificWayToFindClassBytes(name);   * // Get the package name   * int lastDot = name.lastIndexOf('.');   * if (lastDot != -1)   *   {   *     String packageName = name.substring(0, lastDot);   *     // Look if the package already exists   *     if (getPackage(pkg) == null)   *       {   *         // define the package   *         definePackage(packageName, ...);   *       }   *   }   * // Define and return the class   *  return defineClass(name, classBytes, 0, classBytes.length);   * </pre>   *   * <p><code>loadClass()</code> makes sure that the <code>Class</code>   * returned by <code>findClass()</code> will later be returned by   * <code>findLoadedClass()</code> when the same class name is requested.   *   * @param name class name to find (including the package name)   * @return the requested Class   * @throws ClassNotFoundException when the class can not be found   * @since 1.2   */  protected Class findClass(String name) throws ClassNotFoundException  {    throw new ClassNotFoundException(name);  }  /**   * Helper to define a class using a string of bytes. This version is not   * secure.   *   * @param data the data representing the classfile, in classfile format   * @param offset the offset into the data where the classfile starts   * @param len the length of the classfile data in the array   * @return the class that was defined   * @throws ClassFormatError if data is not in proper classfile format   * @throws IndexOutOfBoundsException if offset or len is negative, or   *         offset + len exceeds data   * @deprecated use {@link #defineClass(String, byte[], int, int)} instead   */  protected final Class defineClass(byte[] data, int offset, int len)    throws ClassFormatError  {    return defineClass(null, data, offset, len);  }  /**   * Helper to define a class using a string of bytes without a   * ProtectionDomain. Subclasses should call this method from their   * <code>findClass()</code> implementation. The name should use '.'   * separators, and discard the trailing ".class".  The default protection   * domain has the permissions of   * <code>Policy.getPolicy().getPermissions(new CodeSource(null, null))<code>.   *   * @param name the name to give the class, or null if unknown   * @param data the data representing the classfile, in classfile format   * @param offset the offset into the data where the classfile starts   * @param len the length of the classfile data in the array   * @return the class that was defined   * @throws ClassFormatError if data is not in proper classfile format   * @throws IndexOutOfBoundsException if offset or len is negative, or   *         offset + len exceeds data   * @throws SecurityException if name starts with "java."   * @since 1.1   */  protected final Class defineClass(String name, byte[] data, int offset,                                    int len) throws ClassFormatError  {    return defineClass(name, data, offset, len, null);  }  /**   * Helper to define a class using a string of bytes. Subclasses should call   * this method from their <code>findClass()</code> implementation. If the   * domain is null, the default of   * <code>Policy.getPolicy().getPermissions(new CodeSource(null, null))<code>   * is used. Once a class has been defined in a package, all further classes   * in that package must have the same set of certificates or a   * SecurityException is thrown.   *   * @param name the name to give the class.  null if unknown   * @param data the data representing the classfile, in classfile format   * @param offset the offset into the data where the classfile starts   * @param len the length of the classfile data in the array   * @param domain the ProtectionDomain to give to the class, null for the   *        default protection domain   * @return the class that was defined   * @throws ClassFormatError if data is not in proper classfile format   * @throws IndexOutOfBoundsException if offset or len is negative, or   *         offset + len exceeds data   * @throws SecurityException if name starts with "java.", or if certificates   *         do not match up   * @since 1.2   */  protected final synchronized Class defineClass(String name, byte[] data,						 int offset, int len,						 ProtectionDomain domain)    throws ClassFormatError  {    if (domain == null)      domain = defaultProtectionDomain;    if (! initialized)      throw new SecurityException("attempt to define class from uninitialized class loader");    return VMClassLoader.defineClass(this, name, data, offset, len, domain);  }  /**   * Links the class, if that has not already been done. Linking basically   * resolves all references to other classes made by this class.   *   * @param c the class to resolve   * @throws NullPointerException if c is null   * @throws LinkageError if linking fails   */  protected final void resolveClass(Class c)  {    VMClassLoader.resolveClass(c);  }  /**   * Helper to find a Class using the system classloader, possibly loading it.   * A subclass usually does not need to call this, if it correctly   * overrides <code>findClass(String)</code>.   *   * @param name the name of the class to find   * @return the found class   * @throws ClassNotFoundException if the class cannot be found   */  protected final Class findSystemClass(String name)    throws ClassNotFoundException  {    return Class.forName(name, false, systemClassLoader);  }  /**   * Returns the parent of this classloader. If the parent of this   * classloader is the bootstrap classloader then this method returns   * <code>null</code>. A security check may be performed on   * <code>RuntimePermission("getClassLoader")</code>.   *   * @throws SecurityException if the security check fails   * @since 1.2   */  public final ClassLoader getParent()  {    // Check if we may return the parent classloader.    SecurityManager sm = System.getSecurityManager();    if (sm != null)      {        Class c = VMSecurityManager.getClassContext()[1];        ClassLoader cl = c.getClassLoader();	if (cl != null && ! cl.isAncestorOf(this))          sm.checkPermission(new RuntimePermission("getClassLoader"));      }    return parent;  }  /**   * Helper to set the signers of a class. This should be called after   * defining the class.   *   * @param c the Class to set signers of   * @param signers the signers to set   * @since 1.1   */  protected final void setSigners(Class c, Object[] signers)  {    c.setSigners(signers);  }  /**   * Helper to find an already-loaded class in this ClassLoader.   *   * @param name the name of the class to find   * @return the found Class, or null if it is not found   * @since 1.1   */  protected final synchronized Class findLoadedClass(String name)  {    return VMClassLoader.findLoadedClass(this, name);  }  /**   * Get the URL to a resource using this classloader or one of its parents.   * First tries to get the resource by calling <code>getResource()</code>   * on the parent classloader. If the parent classloader returns null then   * it tries finding the resource by calling <code>findResource()</code> on   * this classloader. The resource name should be separated by '/' for path   * elements.   *   * <p>Subclasses should not override this method but should override   * <code>findResource()</code> which is called by this method.   *   * @param name the name of the resource relative to this classloader   * @return the URL to the resource or null when not found   */  public URL getResource(String name)  {    URL result;    if (parent == null)      result = VMClassLoader.getResource(name);    else      result = parent.getResource(name);    if (result == null)      result = findResource(name);    return result;  }  /**   * Returns an Enumeration of all resources with a given name that can   * be found by this classloader and its parents. Certain classloaders   * (such as the URLClassLoader when given multiple jar files) can have   * multiple resources with the same name that come from multiple locations.   * It can also occur that a parent classloader offers a resource with a   * certain name and the child classloader also offers a resource with that   * same name. <code>getResource() only offers the first resource (of the   * parent) with a given name. This method lists all resources with the   * same name. The name should use '/' as path separators.   *   * <p>The Enumeration is created by first calling <code>getResources()</code>   * on the parent classloader and then calling <code>findResources()</code>   * on this classloader.   *   * @param name the resource name   * @return an enumaration of all resources found   * @throws IOException if I/O errors occur in the process   * @since 1.2   */  public final Enumeration getResources(String name) throws IOException  {    Enumeration parentResources;    if (parent == null)      parentResources = VMClassLoader.getResources(name);    else      parentResources = parent.getResources(name);    return new DoubleEnumeration(parentResources, findResources(name));  }  /**   * Called whenever all locations of a named resource are needed.   * It is called by <code>getResources()</code> after it has called   * <code>parent.getResources()</code>. The results are combined by   * the <code>getResources()</code> method.   *   * <p>The default implementation always returns an empty Enumeration.   * Subclasses should override it when they can provide an Enumeration of   * URLs (possibly just one element) to the named resource.   * The first URL of the Enumeration should be the same as the one   * returned by <code>findResource</code>.   *   * @param name the name of the resource to be found   * @return a possibly empty Enumeration of URLs to the named resource   * @throws IOException if I/O errors occur in the process   * @since 1.2   */  protected Enumeration findResources(String name) throws IOException  {    return EmptyEnumeration.getInstance();  }  /**   * Called whenever a resource is needed that could not be provided by   * one of the parents of this classloader. It is called by   * <code>getResource()</code> after <code>parent.getResource()</code>   * couldn't provide the requested resource.   *   * <p>The default implementation always returns null. Subclasses should   * override this method when they can provide a way to return a URL   * to a named resource.   *   * @param name the name of the resource to be found   * @return a URL to the named resource or null when not found   * @since 1.2   */  protected URL findResource(String name)  {    return null;  }  /**   * Get the URL to a resource using the system classloader.   *   * @param name the name of the resource relative to the system classloader   * @return the URL to the resource   * @since 1.1   */  public static final URL getSystemResource(String name)  {    return systemClassLoader.getResource(name);  }  /**   * Get an Enumeration of URLs to resources with a given name using the   * the system classloader. The enumeration firsts lists the resources with   * the given name that can be found by the bootstrap classloader followed   * by the resources with the given name that can be found on the classpath.   *   * @param name the name of the resource relative to the system classloader   * @return an Enumeration of URLs to the resources   * @throws IOException if I/O errors occur in the process

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人精品鲁一区一区二区| 一区二区三区在线视频观看| 婷婷六月综合网| 欧美日韩亚洲丝袜制服| 亚洲图片欧美视频| 欧美日韩aaaaaa| 天堂久久久久va久久久久| 777a∨成人精品桃花网| 免费成人美女在线观看| 精品噜噜噜噜久久久久久久久试看 | 成人久久18免费网站麻豆| 国产亚洲一区二区三区四区| 国产一区二区精品久久99| 久久综合久久综合亚洲| 成人av在线播放网站| 亚洲精品中文在线| 91精品国产综合久久久久久久久久 | a在线欧美一区| 夜夜精品视频一区二区| 欧美片在线播放| 国产一区二区三区国产| 国产精品成人在线观看| 欧美系列一区二区| 另类小说视频一区二区| 久久综合资源网| 99久久亚洲一区二区三区青草| 亚洲激情图片小说视频| 在线不卡免费av| 丰满白嫩尤物一区二区| 亚洲综合激情另类小说区| 精品日韩99亚洲| a美女胸又www黄视频久久| 亚洲国产一区视频| 久久精品亚洲一区二区三区浴池 | 在线一区二区三区做爰视频网站| 天堂va蜜桃一区二区三区 | 亚洲国产精华液网站w| 欧美无砖砖区免费| 国产精品夜夜爽| 亚洲国产精品一区二区尤物区| 精品国内二区三区| 91传媒视频在线播放| 精品一区二区久久| 亚洲一级在线观看| 国产日韩三级在线| 91精品国产麻豆| a亚洲天堂av| 极品少妇一区二区三区精品视频 | 色吊一区二区三区| 国产精品影视在线观看| 亚洲成人资源在线| 国产精品高潮呻吟久久| 欧美变态tickle挠乳网站| 91国内精品野花午夜精品| 国产美女久久久久| 美女一区二区在线观看| 亚洲国产三级在线| 亚洲少妇中出一区| 日本一区二区在线不卡| 日韩欧美国产系列| 欧美喷潮久久久xxxxx| 日本高清视频一区二区| 成人免费视频一区| 国产精品一区二区久久不卡| 日韩中文字幕不卡| 午夜精品视频在线观看| 亚洲精品日韩综合观看成人91| 国产网站一区二区三区| 日韩欧美成人一区| 欧美一区二区福利视频| 欧美日韩免费观看一区三区| 日韩一级成人av| 色婷婷久久久亚洲一区二区三区| 一区精品在线播放| 国产欧美va欧美不卡在线| 2024国产精品| 精品国产一区二区三区四区四 | 欧美在线制服丝袜| www.av精品| www.日本不卡| 99久久免费精品| 91网页版在线| 色综合久久88色综合天天免费| 99热精品国产| 91麻豆精品视频| 91免费观看在线| 在线观看www91| 欧美三级中文字| 国产成人一级电影| 成人免费视频播放| 99re这里只有精品6| 91麻豆国产香蕉久久精品| 一本色道亚洲精品aⅴ| 日本电影欧美片| 色屁屁一区二区| 91 com成人网| 日韩一本二本av| 久久久蜜桃精品| 亚洲三级在线免费| 亚洲成av人片在www色猫咪| 天堂久久一区二区三区| 久久成人免费日本黄色| 国产剧情一区二区| 99国产欧美另类久久久精品| 在线影视一区二区三区| 91麻豆精品91久久久久同性| 26uuu欧美| 亚洲欧洲av在线| 亚洲午夜成aⅴ人片| 七七婷婷婷婷精品国产| 国产91清纯白嫩初高中在线观看| 成人一级片在线观看| 在线精品视频一区二区三四| 91精品国产黑色紧身裤美女| 国产亚洲欧美日韩在线一区| 亚洲天堂中文字幕| 日韩高清不卡在线| 丁香婷婷综合五月| 欧美性猛交xxxx乱大交退制版| 精品久久久久久久人人人人传媒| 国产精品传媒在线| 日本麻豆一区二区三区视频| 丁香婷婷综合五月| 欧美日韩大陆在线| 欧美高清在线一区| 日韩精品成人一区二区在线| 成人午夜又粗又硬又大| 欧美日韩美少妇| 欧美国产精品一区| 日本人妖一区二区| 色综合一区二区三区| 久久这里只精品最新地址| 亚洲乱码国产乱码精品精小说 | 经典三级一区二区| 日本福利一区二区| 精品视频在线视频| 精品视频一区二区不卡| 国产精品麻豆欧美日韩ww| 亚洲一区二区三区视频在线| 日韩高清一级片| 在线免费不卡电影| 久久先锋影音av| 亚洲免费观看高清在线观看| 免费在线一区观看| 欧美日韩国产综合草草| 久久久久久久免费视频了| 樱桃视频在线观看一区| 国产中文一区二区三区| 国产高清精品网站| 精品久久久久久久人人人人传媒| 亚洲天天做日日做天天谢日日欢| 日本不卡一区二区| 北条麻妃国产九九精品视频| 久久综合九色综合97婷婷| 一区二区三区不卡在线观看 | 韩国v欧美v日本v亚洲v| 在线观看一区日韩| 久久影院视频免费| 亚洲国产aⅴ成人精品无吗| 国产成人在线视频播放| 欧美日本乱大交xxxxx| 国产精品麻豆欧美日韩ww| 视频一区视频二区中文字幕| 成人午夜视频在线观看| 欧美日本免费一区二区三区| 亚洲高清在线视频| 99久久精品国产一区| 26uuu国产电影一区二区| 亚洲精品大片www| 色视频成人在线观看免| 国产精品全国免费观看高清| 免费的国产精品| 欧美高清dvd| 日本欧美一区二区三区乱码| 在线观看免费亚洲| 国产精品国产三级国产aⅴ原创| 久久精品国产99久久6| 欧美日韩一区二区在线观看| 亚洲男同性恋视频| 9人人澡人人爽人人精品| 国产视频视频一区| 狠狠色丁香久久婷婷综| 欧美精品亚洲一区二区在线播放| 亚洲综合区在线| 91丨porny丨中文| 国产婷婷精品av在线| av激情综合网| 国产精品久久午夜| 丰满白嫩尤物一区二区| 久久亚洲免费视频| www..com久久爱| 1024成人网| 色综合久久综合网欧美综合网| 亚洲va欧美va人人爽午夜| 欧美无人高清视频在线观看| 亚洲人一二三区| 国产精品一二三在| 中文字幕日韩一区| 99国产精品久久久久久久久久久| 国产精品久久久久婷婷二区次|