import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
import java.util.Scanner;
/** * Created by rail on 2016/5/27. */
public class reflectTest {
public static void main(String[]args)
{
String name;
if(args.length>0)
name=args[0];
else
{
Scanner in=new Scanner(System.in);
System.out.println("Enter class name");
name=in.next();
}
try {
Class cl=Class.forName(name);
Class supercl=cl.getSuperclass();
String modifiers= Modifier.toString(cl.getModifiers());
if(modifiers.length()>0)
System.out.print(modifiers+" ");
System.out.print("class"+name);
if (supercl!=null&&supercl!=Object.class)
System.out.print(" extends "+supercl.getName());
System.out.print("\n{\n");
printConstructors(cl);
System.out.println();
printMethods(cl);
System.out.println();
printFields(cl);
System.out.print("}");
}
catch (ClassNotFoundException e)
{
e.printStackTrace();
}
}
public static void printFields(Class cl)
{
Field[]fields=cl.getDeclaredFields();
for(Field f:fields)
{
Class type=f.getType();
String name=f.getName();
System.out.print(" ");
String modifiers=Modifier.toString(f.getModifiers());
if (modifiers.length()>0)
System.out.print(modifiers+" ");
System.out.println(type.getName()+" "+name+";");
}
}
public static void printMethods(Class cl)
{
Method[]methods=cl.getDeclaredMethods();
for (Method m:methods)
{
Class retType=m.getReturnType();
String name=m.getName();
System.out.print(" ");
String modifiers=Modifier.toString(m.getModifiers());
if (modifiers.length()>0)
System.out.print(modifiers+" ");
System.out.print(retType.getName()+" "+name+"(");
Class[]paramTypes=m.getParameterTypes();
for (int j=0;j<paramTypes.length;j++)
{
if(j>0)
System.out.print(", ");
System.out.print(paramTypes[j].getName());
}
System.out.println(");");
}
}
public static void printConstructors(Class cl)
{
Constructor[]constructors=cl.getDeclaredConstructors();
for (Constructor c:constructors)
{
String name=c.getName();
System.out.print(" ");
String modifiers=Modifier.toString(c.getModifiers());
if (modifiers.length()>0)
System.out.print(modifiers+" ");
System.out.print(name+"(");
Class[]paramTypes=c.getParameterTypes();
for (int j=0;j<paramTypes.length;j++)
{
if(j>0)
System.out.print(", ");
System.out.print(paramTypes[j].getName());
}
System.out.println(");");
}
}
}
java实现输入类名打印出该类的所有构造器、方法和域
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...