java使用反射给对象赋值


类:

public class Test {

    private String name;

    public String getName() {

        return name;

    }

    public void setName( String name) {

         this.name= name;

    }

}

方法1:

Test t = new Test();

Field f = t.getClass().getDeclaredField("name");

f.setAccessible(true);

f.set(t, "this is test1");

System.out.println(t.getName());

 

方法2:

Test t = new Test();

Method setName = t.getClass().getMethod("setName", String.class);

String s ="this is test2";

setName.invoke(t,s);

System.out.println(t.getName());


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM