摘要: 概述 public abstract class ClassLoaderextends Object类加载器是负责加载类的对象。ClassLoader 类是一个抽象类。如果给定类的二进制名称,那么类加载器会试图查找或生成构成类定义的数据。一般策略是将名称转换为某个文件名,然后从文件系统读取该名称的“类文件”。 所谓类加载器,顾名思义,就是加载类的工具,它的作用是将Java的字节码文件加载到内存... 阅读全文
posted @ 2013-12-07 18:27 ShawnWithSmallEyes 阅读(460) 评论(0) 推荐(1) 编辑
摘要: 概述 Generics - This long-awaited enhancement to the type system allows a type or method to operate on objects of various types while providing compile-time type safety. It adds compile-time type safet... 阅读全文
posted @ 2013-12-07 01:43 ShawnWithSmallEyes 阅读(319) 评论(0) 推荐(0) 编辑