// ClassLoader中的方法protectedClass<?>loadClass(String name,boolean resolve)throwsClassNotFoundException{synchronized(getClassLoadingLock(name)){// First, check if the class has already been loaded// 首先,检查是否已经被加载过Class<?> c =findLoadedClass(name);// null,表示没有加载过if(c ==null){long t0 =System.nanoTime();try{if(parent !=null){// 递归调用父加载器的loadClassc = parent.loadClass(name,false);}else{// 如果没有了parentClassloader,说明到了BootstrapClassLoader这一层c =findBootstrapClassOrNull(name);}}catch(ClassNotFoundException e){// ClassNotFoundException thrown if class not found// from the non-null parent class loader// class没有找到就会抛出ClassNotFoundException(从非空父加载器)}// 如果为空,调用每一层的findClass去找if(c ==null){// If still not found, then invoke findClass in order// to find the class.long t1 =System.nanoTime();c =findClass(name);// this is the defining class loader; record the stats// 每次都做一些记录PerfCounter.getParentDelegationTime().addTime(t1 - t0);PerfCounter.getFindClassTime().addElapsedTimeFrom(t1);PerfCounter.getFindClasses().increment();}}if(resolve){resolveClass(c);}return c;}}
一、简介Android MVC架构模式 M 层 model ,负责处理数据,例如网络请求、数据变化 V 层 对应的是布局 C 层 Controller, 对应的是Activity,处理业务逻辑,包含V层的事情,还会做其他的事情,导致 ac…