Castle 项目 DynamicProxy 是否大量使用反射?
Castle 项目 DynamicProxy 是否经常大量使用 Reflection ...?
或者它是否预先反射缓存数据?
Does Castle project DynamicProxy heavily use Reflection ... like constantly?
Or does it do up front reflection cache the data?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一旦代理类的实例被实例化,它就根本不使用反射。
它只是在运行时创建一个派生类。要创建该类,它可能需要使用反射,但是一旦创建了该类,它就像任何其他类一样。
It doesn't use Reflection at all as soon as the instance of the proxy class is instantiated.
It just creates a derived class at runtime. To create that class, it might need to use reflection, but once the class is created, it is just like any other class.