正在加载图片...
从 Class中获取信息 //取得宣告的方法成员代表对象 Method[] methods =c. getDeclaredMethods ()i for(Method me thod: me thods) //显示权限修饰,像是 public丶 protected丶 private System. out. print("\t"+ Modifier tostring( method. getModifiers ()))i //显示返回值型态名称 System. out. print("+ method. getReturnType().getName()+ )i //显示方法名称 System. out. println (method. getName(从Class中获取信息 //取得宣告的方法成员代表对象 Method[] methods = c.getDeclaredMethods(); for(Method method : methods) { //显示权限修饰,像是public、protected、private System.out.print("\t" + Modifier.toString( method.getModifiers())); //显示返回值型态名称 System.out.print(" " + method.getReturnType().getName() + " "); //显示方法名称 System.out.println(method.getName() + "();"); }
<<向上翻页向下翻页>>
©2008-现在 cucdc.com 高等教育资讯网 版权所有