<div dir="ltr">Fair enough, and the Chesterton analogy is a good summary.<div><br></div><div>This exchange has been useful (at least for me) in clarifying the issues.</div><div><br></div><div><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Jan 19, 2024 at 4:34 PM Brian Goetz <<a href="mailto:brian.goetz@oracle.com">brian.goetz@oracle.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><br>
> Thanks for your comment and the reference to Brian's 2021 document. <br>
> You're right about the series of steps, I get that. My comments on <br>
> undefined array elements really come down to saying that it's bad <br>
> practice to specify arrays of null-restricted elements except where <br>
> you're sure undefined elements are never read before being defined.<br>
<br>
I think part of why you are confused here is that you are looking at the <br>
features individually, rather than the big picture.<br>
<br>
Identity restriction is both semantically useful, and potentially admits <br>
certain optimizations.<br>
Implicit construction is semantically useful (it says "you can use me <br>
without initialization", just as types like `int` do), and potentially <br>
admits certain optimizations.<br>
Non-nullity is semantically useful, and potentially admits certain <br>
optimizations.<br>
<br>
We do not want to define "performance features" here; we want to define <br>
semantically useful features of classes, for which we can reliably <br>
perform desired optimizations when the right semantic constraints are in <br>
place.  The hard part was identifying which semantic features those were.<br>
<br>
Fields of type `String!` (and arrays whose elements are `String!`) are <br>
semantically useful (lots of people would love to have them even if they <br>
never get value types), even though we can't flatten them at all.  But <br>
to ensure their usefulness, we need to ensure they are initialized <br>
before use (or, tolerate NPEs in badly written programs, such as when <br>
`this` escapes construction.)<br>
<br>
On the other hand, fields of type `Integer!` (or arrays whose elements <br>
are `Integer!`) can be flattened safely regardless of races, <br>
this-escapes, etc -- because `Integer` is implicitly constructible.  <br>
(And, this also allows us to guarantee that it will *never* be null, as <br>
opposed to the `String!` case, where such a guarantee always comes with <br>
caveats.)  But the cost of this is that we have to know which classes <br>
are like String and which are like Integer, and the implicit constructor <br>
is what signals this.<br>
<br>
On the other other hand, fields/arrays of `LocalDate!` _could_ be <br>
flattened, but only if we are absolutely 100% sure (no caveats) that <br>
they are guaranteed to be initialized before writing.  (Failure to get <br>
this right is much worse than an errant NPE; we've violated the <br>
integrity of the object model.)<br>
<br>
We want the language and runtime to have access to all the information <br>
it needs to provide good performance and safety in all of these cases.  <br>
You might dislike the syntax choice behind implicit constructors (maybe <br>
you prefer a class modifier like `implicitly-constructible`), but this <br>
isn't the place for syntax debates.  The important thing here is that <br>
whether a class can be implicitly constructed or not appears, after many <br>
many hours of analysis, to be an imcompressible element of the design, <br>
unless we are willing to compromise on either safety or flattening.  It <br>
is natural and healthy to wonder "can this be simplified further" ... <br>
but best to do so with awareness that we may be staring at Chesterton's <br>
Fence (<a href="https://fs.blog/chestertons-fence/" rel="noreferrer" target="_blank">https://fs.blog/chestertons-fence/</a>).<br>
</blockquote></div><br clear="all"><div><br></div><span class="gmail_signature_prefix">-- </span><br><div dir="ltr" class="gmail_signature"><div dir="ltr">Phone:  (416) 450-3584 (cell)</div></div>