<div dir="ltr"><div>I&#39;m new to this thread, but I&#39;ve read every email so far. There are a few things I find confusing with the proposal, so I&#39;ll try to sum up what I see so far:</div><div><br></div><div>1. I don&#39;t understand what problem this solves?</div><div><br></div><div>It seems like for 3rd party libraries only, we are afraid that people will subclass things when they shouldn&#39;t? Is this a real problem? I&#39;ve honestly never seen anyone incorrectly subclass something in a 3rd party library when there was a good alternative. Maybe I have and I forget, but it happens so rarely that I don&#39;t think it&#39;s a real problem to fix.</div><div><br></div><div>What are people frustrated by? Are 3rd party developers frustrated that they can&#39;t specify this? But they can already - with final? Are consumers frustrated that they&#39;re allowed to subclass when they shouldn&#39;t? I can&#39;t imagine anyone wanting either of these things.</div><div><br></div><div>2. It seems that a consistent argument is that this &#39;forces developers to think about it&#39;.</div><div><br></div><div>I don&#39;t understand this at all. It&#39;s not a required keyword, so why does it force me to do anything? I leave it out - there&#39;s no error, no reminder, no forcing.</div><div><br></div><div>3. It&#39;s a crazy specific and complex rule:</div><div><br></div><div>&quot;You can&#39;t subclass it only if it&#39;s public and only if it&#39;s in a different module. Unless it&#39;s testable, then it&#39;s ok.&quot; Not only does this make many assumptions about the roles of modules (not all modules are 3rd party libraries), but it&#39;s a crazy rule for people to memorize. It definitely violates the rule of least surprise in my opinion and I bet most people running into this error will think: &quot;What is this?&quot;.</div><div><br></div><div>4. Please can we keep swift simple</div><div><br></div><div>Swift has ~94 keywords so far (I know, that&#39;s not the best way to measure complexity of a language), but does this problem really warrant it&#39;s own keyword? Swift is beautiful because of how it balances power and complexity. These types of rules add so much complexity for very little benefit.</div><div><br></div><div>5. If you think subclassing is dangerous by default, turn it off by default.</div><div><br></div><div>Why are we special casing 3rd party libraries? Since when does a language assume how it&#39;s being consumed? Again, this goes back to the assumption that all modules are 3rd party libraries with well thought out APIs. I don&#39;t think this is true at all and don&#39;t think it&#39;s the languages role to force this model. If we truly believe that subclassing is dangerous unless the class is designed for it, then lets do it everywhere, not just for public classes. I don&#39;t think I&#39;d vote for this, but I will admit it at least has consistency and simplicity.</div><div><br></div><div><br></div><div>Summary</div><div><br></div><div>I think it&#39;s dangerous for a language to assume how code is written and used. This proposal assumes that classes are written in a certain way, and code is consumed in a certain way. I think Swift should stay flexible while allowing for people to be expressive (e.g. the final keyword is AWESOME). The pros here seem to suggest that we&#39;ll fix a bunch of bugs where subclassing was done by mistake. The cons seem to be that it shackles developers when people forget to add this keyword (which will happen a lot...because there are 94 others to remember how to use correctly).</div><div><br></div></div><br><div class="gmail_quote"><div dir="ltr">On Tue, Jul 19, 2016 at 2:17 PM Goffredo Marocchi via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="auto"><div><div style="direction:inherit"><br></div><br>Sent from my iPhone</div></div><div dir="auto"><div><br>On 19 Jul 2016, at 21:41, David Owens II &lt;<a href="mailto:david@owensd.io" target="_blank">david@owensd.io</a>&gt; wrote:<br><br></div><blockquote type="cite"><div><br><div><blockquote type="cite"><div>On Jul 19, 2016, at 11:37 AM, L. Mihalkovic via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:</div><br><div><div dir="auto"><div><br><br><div>Regards</div>(From<span> mobile)</span></div><div><br>On Jul 19, 2016, at 8:19 PM, Goffredo Marocchi via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br><br></div><blockquote type="cite"><div><div><div style="direction:inherit"><br></div>Sent from my iPhone</div><div style="direction:inherit"><br></div><blockquote type="cite"><div><span></span><span>&lt;off-topic&gt;</span><br><span>Cocoa currently hides the boilerplate for all of these wonderful constructs behind amazingly effective runtime acrobatics. This fits perfectly into Objective-C, and it also works very well in Swift. But such features could be in better harmony with Swift&#39;s unique set of language constructs if their boilerplate was hidden behind amazingly effective **compile-time** acrobatics instead.</span><br><span></span><br><span>Such compile-time acrobatics are hard to perform today, and it is possible that the ability to create such systems will forever remain an advanced skill, just like forging runtime magic requires advanced skills in Objective-C.</span><br></div></blockquote><div style="direction:inherit"><br></div><div style="direction:inherit">... rantish...</div><div style="direction:inherit"><br></div><div style="direction:inherit">I am still not convinced that even the best compiler can fully replace what a powerful runtime can provide no matter the acrobatics you put in in terms of compiler introduced utility code/constructs or the code analysis efforts you can put in at compile time</div></div></blockquote><div><br></div><div>That is a fact back by some interesting papers. By it is also true that one cannot always be used in place of the other.</div></div></div></blockquote></div><br><div>While it is true that the compiler cannot fully replace everything, it can help with many types of errors that are hard to catch at runtime.</div><div><br></div><div>I’ll reiterate this again: this proposal does *not* prevent Swift from building language mechanism to allow for this type of behavior though. The fact is, Swift APIs are heavily value or value semantics so the lack of inheritance on classes is not going to be the primary reason you cannot monkey patch something.</div><div><br></div><div>What this proposal does say is this: there is no “safe” way to achieve this type of behavior that the API authors either intentionally left out or left out because of an omission. </div><div><br></div><div>If you are subclassing a class in Swift, under this proposal, you can be sure of one thing: the author explicitly made it so you’d be able to. We can argue if they did so with diligence, but that’s mostly immaterial to the discussion.</div><div><br></div><div>The fact is, in order to allow monkey patching, Swift is going to need to answer many questions that it still has yet to answer, such as how reflection is really going to work. However, with these more restrictive defaults, it’s possible to extend the language to provide runtime monkey patching that can be more easily audited both in source code and at runtime. Instead of API authors just seeing crashes in their libraries and not realizing that someone swizzled a method, we would now be able to mark who did the swizzling and which functions were actually swizzled.</div><div><br></div><div>An example of how this *could* look would be something like this:</div><div><br></div><div><font face="Menlo">struct Person { /* This is defined in module A */</font></div><div><font face="Menlo">    // a bunch of fields</font></div><div><font face="Menlo">    var birthDate: Date { get set }</font></div><div><font face="Menlo"><br></font></div><div><font face="Menlo">    func calculateAge() -&gt; Int { return 12; }</font></div><div><font face="Menlo">}</font></div><div><font face="Menlo"><br></font></div><div>Obviously there is a bug in `calculateAge`. How could we fix it? Well, in your app framework (or some other target as needed) as we don’t have the ability to fix module A directly:</div><div><font face="Menlo"><br></font></div><div><font face="Menlo">extension Person {</font></div><div><font face="Menlo">    @replaceMethodImplementation func calculateAge() -&gt; Int { /* better implementation */ }</font></div><div><font face="Menlo">}</font></div><div><br></div><div>This would require support within the Swift language and tooling. For one, we’d need the non-optimized code to be distributed so that code within module A used this new implementation of `calculateAge`. However, this is the direction I’d much rather see Swift go. The ability to annotate code properly as monkey patches so we can audit them, track them, version them, and identify them clearly both at compile time and runtime.</div><div><br></div><div>I’m all for Swift getting the right underlying model. After that, we can address a better way to provide the necessary means to monkey patch and change behavior, but first the fundamentals need to be nailed properly.</div></div></blockquote><div style="direction:inherit"><br></div></div><div dir="auto"><div style="direction:inherit">Agreed, but we need to get ourselves some metrics and not to be afraid to considered annoying non true believers :). As more coders use Swift in their apps for some portions or the entirety of their codebase, are we seeing less bugs? When will it be proper to collect the data in a productive non biased way? I think it&#39;ll be very interesting as more stats are available other than LOC ones.</div><div style="direction:inherit"><br></div><div style="direction:inherit">We desire to have Swift run in all possible scenarios, complex video games included, and being a heavily value type based language with many built-in components using CoW semantics (sizeable in memory copies when some coders may forget it will happen). There is a reason why academia and a lot of coders back then we&#39;re pushing people towards reference types and pass by reference semantics and away from how C dealt with big structs and function pointers to achieve similar features.</div><div style="direction:inherit"><br></div><blockquote type="cite"><div><div><br></div><div>-David</div></div></blockquote></div>_______________________________________________<br>
swift-evolution mailing list<br>
<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>
</blockquote></div>