码迷,mamicode.com
首页 > 编程语言 > 详细

java常用关键词关键字,方法源码解析

时间:2019-09-13 22:29:01      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:ret   ssl   check   cep   str   ring   rap   throw   class   

  • transient
  • volatile
  • native
  • final
  • Integer
  • String
  • Class &&Object
  • newInstance Class.forName,ClassLoader.loadClass
  • ClassLoader .getResources(), ClassLoader.getSystemResources()

 

ClassLoader .getResources(), ClassLoader.getSystemResources()

 public Enumeration<URL> getResources(String name) throws IOException {
        @SuppressWarnings("unchecked")
        Enumeration<URL>[] tmp = (Enumeration<URL>[]) new Enumeration<?>[2];
        if (parent != null) {
            tmp[0] = parent.getResources(name);
        } else {
            tmp[0] = getBootstrapResources(name);
        }
        tmp[1] = findResources(name);

        return new CompoundEnumeration<>(tmp);
    }
 public static Enumeration<URL> getSystemResources(String name)
        throws IOException
    {
        ClassLoader system = getSystemClassLoader();
        if (system == null) {
            return getBootstrapResources(name);
        }
        return system.getResources(name);
    }

 

java常用关键词关键字,方法源码解析

标签:ret   ssl   check   cep   str   ring   rap   throw   class   

原文地址:https://www.cnblogs.com/wongandy/p/11517622.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!