Android中面向方面的编程
在 Android 应用程序中实现面向方面编程 (AOP) 的最佳方式是什么?
用手机电池的话效率会高吗?
What would be the best way to implement Aspect-oriented programming (AOP) in an Android application?
Would it be efficient with the mobile battery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于它如何实施。
例如,AspectJ 的编译时编织可以在 Android 上运行,但运行时编织则不能。
Android 不支持字节码生成。
查看 Guice wiki:
It depends in how it is implemented.
For instance, AspectJ's compile-time weaving would work on android but runtime weaving do not.
Android does not support bytecode generation.
Check the Guice wiki: