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

Posted wongandy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java常用关键词关键字,方法源码解析相关的知识,希望对你有一定的参考价值。

  • 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常用关键词关键字,方法源码解析的主要内容,如果未能解决你的问题,请参考以下文章

Java源码解析|String源码与常用方法

Android Coverflow Gallery 的关键源码解析AndroidOpenGL

TreeMap关键源码解析-红黑树操作

Java 集合深入理解 :ArrayList源码解析,及动态扩容机制

C# Linq源码解析之Aggregate

C#-Linq源码解析之Average