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