Java / Java 11
What is Nest-Based Access Control feature in Java 11?
Nest-Based Access Control, supports private member access within nest members directly, without the need of any auto-generated bridge method.
The change is backward compatible, which requires no code change, it is just a Java compiler's optimization to remove the bridge method access internally.
More Related questions...