<div dir="ltr">After I read the JEP and related documents of Project Valhalla, I doubted the necessity of the existence of primitive classes.<br><br>It is impossible to migrate from identity class to primitive class, which will break binary compatibility.<br>This is a big obstacle for third-party libraries to support Valhalla.<br>We can't even use the multi-release jar to make the API contain any primitive classes, otherwise users must use the multi-release jar to prevent crashes.<br><br>At the same time, in order to support non null types, the universal generics draft also greatly undermines compatibility.<br><br>Although the value class is more compatible, it may not be inlined when it is a field or array member.<br>Therefore, sometimes value objects are repeatedly boxed, which may have worse performance than non value classes.<br>Providing both value class and primitive class may also make it more difficult for users to choose.<br><br>I don't like the current draft very much. In particular, I am very dissatisfied with the huge cost of providing null safety only for primitive types.<br><br>Now I have an idea: it's time to provide generic non null types for Java.<br><br>Since the universal generics draft has decided to break compatibility, we can go further and provide universal non null types in Java, just like Kotlin.<br><br>Marking type as non null is a requirement of programmers for a long time, and Kotlin's null safety is highly praised.<br>I think Valhalla is the best time for Java to introduce null safety.<br><br>If we do, we no longer need the primitive class. It is enough to mark the value class as non null.<br>The problem that prevents us from migrating to the primitive class no longer exists, because we don't need the primitive class and Q type anymore.<br><br></div>