Story Details

  • JEP draft: Prepare to make final mean final

    Posted: 2025-03-31 19:35:51

    This JEP proposes preparing the Java platform for a future where final truly means final, eliminating the current capability of dynamically modifying final fields via reflection or other privileged code. The goal is to improve performance, security, and maintainability by enabling further runtime optimizations based on the immutability guarantees of final. This JEP focuses on identifying and mitigating compatibility risks posed by this change, such as existing frameworks and libraries that rely on altering final fields. It outlines an incremental approach involving a new JVM command-line option to enforce final field immutability, allowing developers to test and adapt their code before the restriction becomes the default and eventually permanent. This preparatory work will pave the way for a subsequent JEP to actually finalize the behavior of final.

    Summary of Comments ( 112 )
    https://news.ycombinator.com/item?id=43538919

    HN commenters largely discuss the implications of making final mean truly final in Java. Some express concern about the performance impact, particularly for JIT compilers and escape analysis. Others question the practicality and benefit, given the existing workarounds like sealed classes and the potential disruption to existing codebases. A few commenters welcome the change, seeing it as a positive step toward stricter immutability and potentially simplifying some aspects of the language. There's also discussion around the nuances of the proposal, such as its impact on method overriding and the interaction with reflection. Several users highlight the complexity of implementing this change in the JVM and the potential for unforeseen consequences.