欢迎来到 常识词典网 , 一个专业的常识知识学习网站!

[ Ctrl + D 键 ]收藏本站

您所在的位置:首页 > 教育学习 > 问答

问答

Java 反射到底慢在哪里?

分类: 问答 常识词典 编辑 : 常识 发布 : 10-17

阅读 :420

Java 反射到底慢在哪里?能系统讲解下么?万分感谢4 个答案

答案 1:

谁告诉你慢了?

答案 2:

忽略不计

答案 3:

应该动态加载的,没办法运用jvm的一些优化措施,比如jit之类的。

答案 4:

Because reflection involves types t-at are dynamically resolved, certain Java virtual -c-ine optimizations can not be performed. Consequently, reflective operations -ave slower perfor-nce t-an t-eir non-reflective counterparts, and s-ould be avoided in sections of code w-ic- are called frequently in perfor-nce-sensitive applications. stackoverflow/question...