import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Modifier;
public class demo1 {
public static void main(String[] args) {
try {
Class c=Class.forName("example1");
//Constructor cons[]=c.getConstructors();//获取公有构造方法
Constructor cons[]=c.getDeclaredConstructors();//获取所有构造方法
for(Constructor con:cons) {
System.out.print(con.getModifiers());
System.out.print(Modifier.toString(con.getModifiers())+" ");//修饰符,
System.out.print(con.getName()+" ");//方法名
Class paras[]=con.getParameterTypes();//方法的参数
for(int i=0;i
public class example1 {
int id;
String name;
double price;
public example1() {
super();
}
public example1(int id) {
super();
this.id = id;
}
private example1(int id, String name, double price) {
super();
this.id = id;
this.name = name;
this.price = price;
}
public int getid(int id) {
return id;
}
@Override
public String toString() {
return "example1 [id=" + id + ", name=" + name + ", price=" + price + "]";
}
}
二、访问成员变量
import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Modifier;
public class demo2 {
public static void main(String[] args) {
try {
Class c=Class.forName("example2");
// Field fs[]=c.getFields();//返回所有公有属性
Field fs[]=c.getDeclaredFields();//返回所有所有属性
for(Field f:fs){
System.out.print(Modifier.toString(f.getModifiers())+" ");
System.out.print(f.getType().getSimpleName()+" ");
System.out.print(f.getName());
System.out.println();
}
Constructor cs=c.getConstructor();
example2 e=(example2) cs.newInstance();
Field f=c.getDeclaredField("id");
System.out.println(f.get(e));
} catch (ClassNotFoundException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
} catch (NoSuchMethodException e1) {
// TODO 自动生成的 catch 块
e1.printStackTrace();
} catch (SecurityException e1) {
// TODO 自动生成的 catch 块
e1.printStackTrace();
} catch (InstantiationException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
} catch (IllegalAccessException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
} catch (IllegalArgumentException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
} catch (InvocationTargetException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
} catch (NoSuchFieldException e1) {
// TODO 自动生成的 catch 块
e1.printStackTrace();
}
}
}
public class example2 {
public int id=-1;
public String name="XXX";
private double price=12.2;
}
三、访问方法
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
public class demo3 {
public static void main(String[] args) {
Class c;
try {
c = Class.forName("example3");
Method ms[]=c.getDeclaredMethods();
for(Method m:ms) {
System.out.print(Modifier.toString(m.getModifiers())+" ");//修饰符
System.out.print(m.getReturnType().getSimpleName()+" ");
System.out.print(m.getName()+" ");
Class paras[]=m.getParameterTypes();
for(int i=0;i
public class example3 {
public static void add(int a,int b) {
int c=a+b;
System.out.print("a+b="+c);
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)