反射:主要用于工具和框架的开发。
反射是对于类的再抽象;通过字符串来抽象类
代码:
public class TestReflect {
public static voidmain(String[] args) {
try {
Class<?> c =Class.forName("java.util.Stack");
Method m[] = c.getDeclaredMethods();
for (int i = 0; i < m.length; i++)
System.out.println(m[i].toString());
} catch (Throwablee) {
System.err.println(e);
}
}
}