⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 extensionclassloader.java

📁 gcc的组建
💻 JAVA
字号:
/* Copyright (C) 1999, 2001, 2002, 2003, 2004, 2005  Free Software Foundation   This file is part of libgcj.This software is copyrighted work licensed under the terms of theLibgcj License.  Please consult the file "LIBGCJ_LICENSE" fordetails.  *//* Author: Kresten Krab Thorup <krab@gnu.org>  */package gnu.gcj.runtime;import java.net.URL;// The extension loader for libgcj.  Class loader bootstrap is a bit// tricky, see prims.cc and SystemClassLoader for some details.public final class ExtensionClassLoader extends HelperClassLoader{  private ExtensionClassLoader ()  {	  }  private void init()   {    addDirectoriesFromProperty("java.ext.dirs");  }  // This can be package-private because we only call it from native  // code during startup.  static void initialize ()  {    instance.init();    system_instance.init();  }  // The only ExtensionClassLoader that can exist.  static ExtensionClassLoader instance = new ExtensionClassLoader();  // The system class loader.  static SystemClassLoader system_instance = new SystemClassLoader(instance);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -