1 Star 1 Fork 0

betterlife/TestProj

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ReflectionOrNot.java 1.34 KB
一键复制 编辑 原始数据 按行查看 历史
import java.lang.reflect.*;
class ReflectionOrNot
{
public void run()
{
try {
Thread.currentThread().sleep( 0 );
}
catch( InterruptedException ie ){
}
}
public static void main( String ... args ) throws Exception
{
for (int i = 1; i <= 5; i++) {
runTest();
System.out.println("Test " + i + " finished \n");
}
}
public static void runTest() throws Exception
{
ReflectionOrNot ron = new ReflectionOrNot();
int max = 1000000;
long start = System.currentTimeMillis();
for( int i = 0 ; i < max ; i++ ) {
ron.run();
}
System.out.println( "Direct access took: " + ( System.currentTimeMillis() - start ) );
Method m = ReflectionOrNot.class.getDeclaredMethod("run");
start = System.currentTimeMillis();
for( int i = 0 ; i < max ; i++ ) {
m.invoke( ron );
}
System.out.println( "Reflection Took: " + ( System.currentTimeMillis() - start ) );
start = System.currentTimeMillis();
for( int i = 0 ; i < max ; i++ ) {
m = ReflectionOrNot.class.getDeclaredMethod("run");
m.invoke( ron );
}
System.out.println( "Lookup + Reflect : " + ( System.currentTimeMillis() - start ) );
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/redchamber/testproj.git
git@gitee.com:redchamber/testproj.git
redchamber
testproj
TestProj
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385