How does access modifier impact the performance in

2019-02-28 00:57发布

In java programming, method level access modifiers using protected or public where private can be used will affect the performance in any way? if so in what what way it affects the run time performance.

2条回答
兄弟一词,经得起流年.
2楼-- · 2019-02-28 01:06

Even if there is a theoretical difference, I doubt that there is a measurable diffrence. At least in any sensible Java runtime

查看更多
趁早两清
3楼-- · 2019-02-28 01:11

Quoting erickson from the following answer:

The access modifier on the field doesn't make any difference in speed, but invoking the accessor method does.

ps. Please upvote the original answer instead of this one.

查看更多
登录 后发表回答