Java to Strengthen Immutability of Final Fields
To enhance the safety and performance of Java programs, the JDK plans to strengthen the immutability of final fields. Currently, deep reflection can modify final fields, which violates the original intention of the final keyword and limits JVM optimization. Future releases will default to prohibiting deep reflection from modifying final fields and will issue warnings. Developers can selectively enable modification of final fields using the `--enable-final-field-mutation` option, but it is recommended to avoid it as much as possible. This move aims to improve Java's "security by default" feature and maintain consistency with the design of record classes.
Read more