<div dir="ltr"><div dir="ltr">Em sáb., 20 de jan. de 2024 às 19:02, John Rose <<a href="mailto:john.r.rose@oracle.com">john.r.rose@oracle.com</a>> escreveu:<br></div><div class="gmail_quote"><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">For another system which did it the other way, please look at how C++ object constructors interact with C++ array creation.  It is awkward, hard to understand, bug-prone, and expensive.  We don’t choose to adopt those costs into the Java language or VM.<br></blockquote><div><br></div><div>IIRC, one of the reasons C++ introduced "default constructors" was to restore the optimized initialization of default initialized arrays for that object. In C++, the presence of any explicitly defined constructor disables the implicitly defined zero-argument constructor. But if one reintroduces the zero-argument constructor explicitly, it is not guaranteed to have the effect of "default initialization", as the body of that constructor is free to do anything. Marking it as <font face="monospace">= default</font> invokes the "default initialized fields" definition, restoring the optimization. To my intuition, this is generally the same as  the "implicit constructor" being proposed by Valhalla. Some have argued that this is difficult to understand, but AFAIK, this is not a particularly heavy pedagogical burden on C++.</div></div><div><br></div><span class="gmail_signature_prefix">-- </span><br><div dir="ltr" class="gmail_signature"><div dir="ltr"><div>Pedro Lamarão</div></div></div></div>