欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Ruby CodeGen vs Reflection

程序员文章站 2022-07-04 21:20:00
...
thanks to the discussion about the Ruby on Rails

http://forum.iteye.com/viewtopic.php?p=130217#130217

我学习到,Rails Plugin 的实现,采用的是 Code Generation, Class Enhancement -- 用minxin 把 method 加入到对应的 class 里面。

这样的功能用 reflection 也能够实现。只是调用方法会有不同。

code generation way:

obj.tag_with(...);

reflection way:

tag_with(obj, .... );

我现在比较好奇的是,ruby reflection的效率如何?
会比 code generation慢多少?

差别会有 cglib 和 java reflection 那么大吗?