在java中强制内联
我查看了这篇文章。看起来不错。然而,当 HotSpot(不依赖于服务器或客户端或不依赖于 Sun 版本)制作内联代码时,作者或其他有意识的人会告诉我编码技巧。
I looked at this post. It looks nice. However the authors or other aware people will tell me tricks with coding when HotSpot (does not depend on server or client or not Sun version) makes a code inline.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不要把时间浪费在不合理的优化上。编写简单的代码,使其易于维护,并让 JIT 负责优化。
javac
几乎从不内联任何东西(这很好)。 JVM 经常这样做(这非常好)。确定何时以及如何通过 JIT 进行优化的算法是一门火箭科学。不要试图让你的代码比这更聪明。如果您想提高性能,请使用探查器。如果您想让代码更难被逆向工程,请使用 proguard 等工具。
Don't waste your time on unreasonable optimization. Write you code simple, to make it easy to maintain, and let the JIT take care of optimization.
javac
almost never inline anything (which is good). JVM does it often (which is very good). Algorithms to determine when and how to do what optimization by JIT is a rocket science. Don't try to make your code smarter than that.If you trying to gain performance, then use profiler. If you trying to make your code harder to reverseengineer, use tools like proguard.
我找到了这个链接: https://compile-command-annotations.nicoulaj.net/
该库允许您在 HotSpot JVM 上使用注释来内联方法。
因此,向方法添加 @Inline 注释将强制内联。
这是一个热点特定功能,因为 Java 不允许通过该语言进行内联。
我能想到的唯一其他选择是使用编译时注释并以不同的方式生成字节代码(如 lombok)。
I found this link: https://compile-command-annotations.nicoulaj.net/
This library allows you to use annotations on a HotSpot JVM to inline methods.
Thus adding an
@Inline
annotation to your method will force inlining.This is a hotspot specific feature, because Java doesn't allow inlining via the language.
The only other option I can think of is to use compile time annotations and generate the byte code differently (like lombok).