java通过反射创建对象并调用方法
程序员文章站
2022-06-12 11:07:43
这篇文章主要介绍了java通过反射创建对象并调用方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
1.用户类
pack...
这篇文章主要介绍了java通过反射创建对象并调用方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
1.用户类
package com.lf.entity; import com.lf.annotation.setproperty; import com.lf.annotation.settable; public class userentity { private string username; private int userage; private final int money = 10000; public string getusername() { return username; } public void setusername(string username) { this.username = username; } public int getuserage() { return userage; } public void setuserage(int userage) { this.userage = userage; } //借钱方法 public int getmoney(){ system.out.println("你借了 " + money + "元!"); return money; } //还钱方法,单个参数 public void repay(int money){ system.out.println("你还了 " + money + "元!"); } //还钱方法,多个参数 public void repay(string username,int money){ system.out.println(username+ " 还了 " + money + "元!"); } }
2.测试类
package com.lf.test; import java.lang.reflect.method; import com.lf.entity.userentity; public class reflection { //反射调用方法获取返回值 //第一种方法,获取对象,直接通过对象调用方法 //第二种方法,通过方法名获取方法,执行方法 public static void main(string[] args) throws exception { class<?> userclass = class.forname("com.lf.entity.userentity"); userentity userentity = (userentity) userclass.newinstance(); //第一种方法 system.out.println("第一次借钱:"); int money = userentity.getmoney(); system.out.println("实际拿到钱为: " + money); system.out.println("------------------------分割线------------------------"); //第二种方法,(无参的示例:借钱) system.out.println("第二次借钱:"); method getmoney = userclass.getmethod("getmoney");//得到方法对象 object money2 = getmoney.invoke(userentity);//调用借钱方法,得到返回值 system.out.println("实际拿到钱为:" + money2); system.out.println("------------------------分割线------------------------"); //第二种方法,(单个参数的示例:还钱) system.out.println("第一次还钱:"); method repay1 = userclass.getmethod("repay",int.class);//得到方法对象,有参的方法需要指定参数类型 repay1.invoke(userentity,3000);//执行还钱方法,有参传参 system.out.println("------------------------分割线------------------------"); //第二种方法,(单个参数的示例:还钱) system.out.println("第二次还钱:"); method repay2 = userclass.getmethod("repay", string.class,int.class);//得到方法对象,有参的方法需要指定参数类型 repay2.invoke(userentity,"小飞",5000);//执行还钱方法,有参传参 } }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。