为私有字段生成的合成方法真的会导致性能损失吗?
在 Eclipse 中,当从内部类访问私有字段时,会出现一个可选警告,表示将生成合成访问器方法,并且可以通过将该字段设置为包私有来提高性能。
这种合成方法真的会带来性能损失吗?我认为访问器通常是在运行时内联的,不是吗?
In Eclipse, there is a optional warning when a private field is accessed from an inner class, saying that a synthetic accessor method will be generated and that performance may be improved by making the field package-private.
Does this synthetic method really incur performance penalty? I thought that accessors are generally inlined at runtime, aren't they?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅这个问题 ,简而言之 - 不多,但它提出了一些有趣的类设计点
See this SO question, in short - not much but it raises some interesting class design points