java反射性能

项目中用到了java的反射,可以大大减少代码量。但是反射的性能却不容乐观,做了个简单的测试,如下。

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
public void noreflect() {
    Person p = new Person();
    for(int i=0; i<10000000; ++i){
        Person.setName(p, "name");
        Person.setAge(p, "22");
    }
}
 
@Test
public void reflect(){
    Person p = new Person();
    try {
        for(int i=0; i<10000000; ++i){
            Method setname = Person.class.getDeclaredMethod("setName", Person.class, String.class);
            Method setage = Person.class.getDeclaredMethod("setAge", Person.class, String.class);
 
            setname.invoke(null, p, "name");
            setage.invoke(null, p, "22");
        }
 
    } catch (Exception e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
}

  java反射性能

java反射性能

java反射性能,布布扣,bubuko.com

java反射性能

上一篇:十进制转换2-16进制(c语言算法实现)


下一篇:C++简单实现八皇后问题