1. Class 对象:
1、 类加载器首先检查这个类的Class对象是否已经加载。如果尚未加载,默认的类加载器就会根据类名查找.class文件。
2、在这个类的字节码被加载是,他们会接收验证,以确保其没有被损坏。并且不包含不良代码。这时java中用于安全防范目的的措施之一。
3、一旦某个类被加载,他就用来创建这个类的所有对象。
下面这个例子说明了一下两点:
1. 类何时被加载
2. 如何加载
package net.mindview.typeinfo; /** * 首先, 下面的每一个类都有一个静态的代码块. * 这个代码块, 在类第一次被加载时执行。 * @author samsung * */ class Candy { static { System.out.println("Loading Candy!"); } } class Gum { static { System.out.println("Loading Gum!"); } } class Cookie { static { System.out.println("Loading Cookie!"); } } public class SweetShop { public static void main(String[] args) { System.out.println("inside main"); //第一次new的时候, 就加载了类Candy. 以后都是从这个类中创建实例对象 new Candy(); System.out.println("After creating Candy!"); try { //Class.forName 获取对象引用的一种方法.参数是类的全限定文件名. 返回值是一个Class对象的引用. //如果Gum没有被加载, 那么这个类就会被加载. //使用类加载器加载类Gum, 在第一次加载Gum时, 也会主动去加载Gum这个类, 以后就从这个类中创建实例. Class.forName("Gum"); } catch (ClassNotFoundException e) { System.out.println("Could`t find Gum"); } System.out.println("After Class.forName(\"Gum\")"); new Cookie(); System.out.println("After creating Cookie"); //这个例子展示, 第二次实例化Cookie是, static静态代码块没有被再次执行, 它只会在第一次加载时执行. new Cookie(); System.out.println("After creating Cookie twice"); } }
package net.mindview.typeinfo.toys; /** * 以下:展示了完全的获取一个类的完整的继承结构. * @author samsung * */ interface HasBatteries {} interface Waterproof {} interface Shoots {} class Toy{ Toy(){} Toy(int i){} } class FancyToy extends Toy implements HasBatteries, Waterproof, Shoots{ FancyToy() {super(1);} } public class ToyTest { static void printInfo(Class cc){ /** * 这里调用了Class的一些基本方法 * cc.isInterface(): 是接口么 * cc.getSimpleName(): 类名, 不含路径 * cc.getCanonicalName(): 全限定类名 */ System.out.println("Class name:" + cc.getName() + " is interface ? [" + cc.isInterface() + "]"); System.out.println("Simple name: " + cc.getSimpleName()); System.out.println("Canonical name: "+ cc.getCanonicalName()); } public static void main(String[] args) { Class c = null; try { //这里必须使用全限定名 c = Class.forName("net.mindview.typeinfo.toys.FancyToy"); } catch (ClassNotFoundException e) { System.out.println("Can`t find FancyToy"); System.exit(1); } printInfo(c); System.out.println(); /** * c.getInterfaces(): 获取这个类已继承的所有的接口 */ for(Class face: c.getInterfaces()){ //打印接口类 printInfo(face); System.out.println(); } /** * c.getSuperclass(): 获取这个类的父类 */ Class up = c.getSuperclass(); Object obj = null; try { //将父类实例化 //使用newInstance来实例化的类不许带有一个默认的构造器 obj = up.newInstance(); } catch (InstantiationException e) { System.out.println("Can`t instantiate"); System.exit(1); } catch (IllegalAccessException e) { System.out.println("Can`t instantiate"); System.exit(1); } //打印父类基本细腻 printInfo(obj.getClass()); } }
运行结果:
Class name:net.mindview.typeinfo.toys.FancyToy is interface ? [false] Simple name: FancyToy Canonical name: net.mindview.typeinfo.toys.FancyToy Class name:net.mindview.typeinfo.toys.HasBatteries is interface ? [true] Simple name: HasBatteries Canonical name: net.mindview.typeinfo.toys.HasBatteries Class name:net.mindview.typeinfo.toys.Waterproof is interface ? [true] Simple name: Waterproof Canonical name: net.mindview.typeinfo.toys.Waterproof Class name:net.mindview.typeinfo.toys.Shoots is interface ? [true] Simple name: Shoots Canonical name: net.mindview.typeinfo.toys.Shoots Class name:net.mindview.typeinfo.toys.Toy is interface ? [false] Simple name: Toy Canonical name: net.mindview.typeinfo.toys.Toy
总结:
cc.isInterface(): 是接口么
cc.getSimpleName(): 类名, 不含路径
cc.getCanonicalName(): 全限定类名
2. 类字面常量
Toy.class
package net.mindview.typeinfo; import java.util.Random; class Initable{ //常数 static final int staticFinal = 47; //静态常量 static final int staticFinal2 = ClassInitialization.rand.nextInt(1000); //静态代码块 static { System.out.println("Initializing Initable"); } } class Initable2{ //非常数静态变量 static int staticNonFinal = 147; static { System.out.println("Initializing Initable2"); } } class Initable3{ //非常熟静态变量 static int staticNonFinal = 74; static { System.out.println("Initializing Initable3"); } } public class ClassInitialization { public static Random rand = new Random(47); public static void main(String[] args) throws ClassNotFoundException { //下面这句话执行完,并没有对Initable这个类进行初始化. Class initable = Initable.class; System.out.println("创建Initable引用之后"); //没有触发初始化---Initable.staticFinal是一个常数, 所以不会触发初始化 System.out.println(Initable.staticFinal); System.out.println("-------1----------"); //触发初始化 -- Initable.staticFinal2是引用常数, 触发初始化 System.out.println(Initable.staticFinal2); System.out.println("---------2--------"); //触发初始化---Initable2.staticNonFinal非常数静态域, 调用后会触发初始化 System.out.println(Initable2.staticNonFinal); System.out.println("---------3--------"); //执行Class.forName的时候, 会将对象初始化. Class initable3 = Class.forName("net.mindview.typeinfo.Initable3"); System.out.println("创建Initable3引用后"); System.out.println("---------4--------"); System.out.println(Initable3.staticNonFinal); } }
结果运行:
创建Initable引用之后 47 -------1---------- Initializing Initable 258 ---------2-------- Initializing Initable2 147 ---------3-------- Initializing Initable3 创建Initable3引用后 ---------4-------- 74
详细看这个demo. 里面主要说了几点
3. 泛化的class引用
package net.mindview.typeinfo; public class WildcardCla***eferences { public static void main(String[] args) { /** * Class<?> 使用的时通配符来表示泛型. */ Class<?> clazz = int.class; clazz = double.class; } }
package net.mindview.typeinfo; public class BoundedCla***eferences { public static void main(String[] args) { Class<? extends Number> clazz = int.class; clazz = double.class; //下面这句话就是报编译异常, 因为String 不是Number的一类 //clazz = String.class; } }
package net.mindview.typeinfo; import java.util.ArrayList; import java.util.List; /** * 定义一个IntegerCounted类--Integer计数器 */ class CountedInteger { //计数器总数 private static long counter; //每一个计数类的编号 private final long id = counter ++; //打印计数器编号 public String toString(){return Long.toString(id);}; } public class FilledList<T> { //这里定义一个类型, 表示该类是处理拿一个特定类型的, 在实例化的时候, 传递实际类型 Class<T> type; public FilledList(Class<T> type){ this.type = type; } public List<T> create(int number) throws InstantiationException, IllegalAccessException{ List<T> list = new ArrayList<T>(); for(int i=0; i<number; i++){ list.add(type.newInstance()); } return list; } public static void main(String[] args) { try { FilledList<CountedInteger> fl = new FilledList(CountedInteger.class); List<CountedInteger> list = fl.create(5); //打印list集合,就是调用list集合中每个元素的toString方法 System.out.println(list); } catch (InstantiationException e) { e.printStackTrace(); } catch (IllegalAccessException e) { e.printStackTrace(); } } }
package net.mindview.typeinfo.toys; /** * 以下:展示了完全的获取一个类的完整的继承结构. * @author samsung * */ interface HasBatteries {} interface Waterproof {} interface Shoots {} interface other {} class Toy{ Toy(){} Toy(int i){} } class FancyToy extends Toy implements HasBatteries, Waterproof, Shoots, other{ FancyToy() {super(1);} } public class ToyTest { static void printInfo(Class cc){ /** * 这里调用了Class的一些基本方法 * cc.isInterface(): 是接口么 * cc.getSimpleName(): 类名, 不含路径 * cc.getCanonicalName(): 全限定类名 */ System.out.println("Class name:" + cc.getName() + " is interface ? [" + cc.isInterface() + "]"); System.out.println("Simple name: " + cc.getSimpleName()); System.out.println("Canonical name: "+ cc.getCanonicalName()); } public static void main(String[] args) { Class c = null; try { //这里必须使用全限定名 c = Class.forName("net.mindview.typeinfo.toys.FancyToy"); } catch (ClassNotFoundException e) { System.out.println("Can`t find FancyToy"); System.exit(1); } printInfo(c); System.out.println(); /** * c.getInterfaces(): 获取这个类已继承的所有的接口 */ for(Class face: c.getInterfaces()){ //打印接口类 printInfo(face); System.out.println(); } /** * c.getSuperclass(): 获取这个类的父类 */ Class up = c.getSuperclass(); Object obj = null; try { //将父类实例化 //使用newInstance来实例化的类不许带有一个默认的构造器 obj = up.newInstance(); } catch (InstantiationException e) { System.out.println("Can`t instantiate"); System.exit(1); } catch (IllegalAccessException e) { System.out.println("Can`t instantiate"); System.exit(1); } //打印父类基本细腻 printInfo(obj.getClass()); } }
package net.mindview.typeinfo.toys; public class GenericToyTest { public static void main(String[] args) throws InstantiationException, IllegalAccessException { Class<FancyToy> ftClass = FancyToy.class; FancyToy fancyToy = ftClass.newInstance(); //如果你想得到某个实现类的超类, 那么他的Class应该如何写呢? Class<? super FancyToy> up = ftClass.getSuperclass(); //Class<Toy> up1 = ftClass.getSuperclass(); Object obj = up.newInstance(); } /** * 这里FancyToy的超类是Toy. 而我想得到Toy这个超类, 并不能直接这样写 * Class<Toy> up = ftClass.getSuperclass(); * 这样编译不通过. */ }
package net.mindview.typeinfo; import net.mindview.initialization.Dog; /** * 类型判断 */ public class InstanceofTest { public static void main(String[] args) { //这里就是对x的类型进行的判断 if("x" instanceof String){ //执行String类型的方法 } } }
4. 反射
package net.mindview.typeinfo; import java.lang.reflect.Constructor; import java.lang.reflect.Method; import java.util.regex.Pattern; public class ShowMethods { private static String usage = "" + "usage:\n" + "ShowMethods qualified.class.name\n" + "To show all methods in class or:\n" + "ShowMethods qualified.class.name. word\n" + "To search for methodds invoiving 'word'"; private static Pattern p = Pattern.compile("\\w+\\."); public static void main(String[] args) { if(args.length<1){ System.out.println(usage); System.exit(1); } int lines = 0; try { Class<?> c = Class.forName(args[0]); //getMethods获取的是整个继承树中所有的方法 Method[] methods = c.getMethods(); //获取已有的构造器 Constructor[] ctors = c.getConstructors(); if(args.length == 1){ //打印所有继承树中的方法名 for(Method method: methods){ System.out.println(p.matcher(method.toString()).replaceAll("")); } //打印全部构造器 for(Constructor ctor: ctors){ System.out.println(p.matcher(ctor.toString()).replaceAll("")); } lines = methods.length + ctors.length; }else { //打印指定类中的方法 for(Method method: methods){ if(method.toString().indexOf(args[1]) != -1){ System.out.println(p.matcher(method.toString()).replaceAll("")); lines++; } } //打印构造器 for(Constructor ctor :ctors){ if(ctor.toString().indexOf(args[1])!=-1){ System.out.println(p.matcher(ctor.toString()).replaceAll("")); lines++; } } } } catch (ClassNotFoundException e) { e.printStackTrace(); } } }
输入参数
net.mindview.typeinfo.ShowMethods
运行结果:
public static void main(String[]) public final void wait(long,int) throws InterruptedException public final native void wait(long) throws InterruptedException public final void wait() throws InterruptedException public boolean equals(Object) public String toString() public native int hashCode() public final native Class getClass() public final native void notify() public final native void notifyAll() public ShowMethods()
输入参数
net.mindview.typeinfo.ShowMethods net.mindview.typeinfo.ShowMethods
运行结果
public static void main(String[]) public ShowMethods()