文件名称:java反射机制
文件大小:2.39MB
文件格式:PPT
更新时间:2016-06-06 16:06:28
反射机制ppt
反射机制package com.langsin.reflection; import java.lang.reflect.Method; public class DumpMethods { public static void main(String args[]) throws Exception { // 加载并初始化命令行参数指定的类 Class> classType = Class.forName(args[0]); // 获得类的所有方法 Method methods[] = classType.getDeclaredMethods(); for (int i = 0; i < methods.length; i++) { System.out.println(methods[i].toString()); } } }