<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><br class=""><div><blockquote type="cite" class=""><div class="">On Jan 10, 2016, at 9:03 PM, Howard Lovatt &lt;<a href="mailto:howard.lovatt@gmail.com" class="">howard.lovatt@gmail.com</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class="">I suspect it is easier both for the compiler and the programmer&nbsp;to allow abstract classes and abstract functions within abstract classes than allowing extensions and by extension (pun intended) protocols to have stored properties. </div></blockquote><div><br class=""></div><div>Developers independently want the ability to add stored properties in extensions (at least for classes). The delta from that to stored properties as default implementations in protocols isn’t that large, and if it’s a better modeling of the problems abstract classes are meant to solve, that’s the right thing to do. Other than stored properties, what important problems do abstract classes solve that protocols don’t?</div><br class=""><blockquote type="cite" class=""><div class="">There is precedence for this approach, in Scala and Java&nbsp;you can have their equivalents of&nbsp;calculated properties in protocols but not stored properties. Both Scala and Java have abstract classes and this seems to work well.<br class=""></div></blockquote><div><br class=""></div><div>Numerous languages have abstract classes; the question is whether they are the right answer in Swift.</div><div><br class=""></div><div><span class="Apple-tab-span" style="white-space:pre">        </span>- Doug</div><div><br class=""></div><blockquote type="cite" class=""><div class=""><br class="">On Monday, 11 January 2016, Douglas Gregor via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" class="">swift-evolution@swift.org</a>&gt; wrote:<br class=""><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word" class=""><br class=""><div class=""><blockquote type="cite" class=""><div class="">On Jan 10, 2016, at 6:43 PM, Wallacy via swift-evolution &lt;<a href="javascript:_e(%7B%7D,'cvml','swift-evolution@swift.org');" target="_blank" class="">swift-evolution@swift.org</a>&gt; wrote:</div><br class=""><div class=""><div dir="ltr" class="">TL;DR<div class=""><br class=""></div><div class="">Thinking about some problems presented here this mailing list. I believe that by following the same concepts behind the default protocol implementations, allowing the same mechanism to provide default properties can be a remarkable gain for language.</div><div class=""><br class=""></div><div class="">Rationale:</div><div class=""><br class=""></div><div class=""><div class="">It has been proposed here also on this list, a need to produce abstract classes, one of the reasons that need, is because is not possible to declare properties in the same way as we declare default implementation on protocols.</div><div class="">I also believe that this can help in the concept of multiple inheritance, and serve as an aid to the default implementation on protocols, and "complete" the&nbsp;Protocol-Oriented Programming concept.</div><div class=""><br class=""></div><div class="">For example:</div><div class=""><br class=""></div><div class=""><div class="">protocol Named {</div><div class="">&nbsp; &nbsp; var name: String { get }</div><div class="">}</div><div class="">protocol Aged {</div><div class="">&nbsp; &nbsp; var age: Int { get }</div><div class="">}</div><div class="">struct Person: Named, Aged {</div><div class="">&nbsp; &nbsp; var name: String</div><div class="">&nbsp; &nbsp; var age: Int</div><div class="">}</div><div class=""><br class=""></div><div class="">extension Aged where Self: Named { &nbsp; &nbsp;</div><div class="">&nbsp; &nbsp; func wishHappyBirthday() { // regular default implementation</div><div class="">&nbsp; &nbsp; &nbsp; &nbsp; print("Happy birthday \(<a href="http://self.name/" target="_blank" class="">self.name</a>) - you're \(self.age)!")</div><div class="">&nbsp; &nbsp; }</div><div class="">&nbsp; &nbsp; var birthdayVideo: AVPlayerItem? // nil is a default value</div><div class="">}</div></div><div class=""><div class="">...</div><div class="">func playBirthdayMediaFrom(person: Person){</div><div class="">&nbsp; &nbsp; var avPlayer = AVPlayer(playerItem: person.birthdayVideo)</div><div class="">&nbsp; &nbsp; // etc...</div><div class="">}</div></div><div class=""><br class=""></div><div class="">One of thousands of using this feature is to prevent us to create variables that are not actually part of the data model we are shaping.<br class=""></div><div class=""><br class=""></div><div class=""><div class="">birthdayVideo in this case would be any variable that is not part of our model, but need to be associated with the object (or structure) in some context of our application. (And not be used anywhere else in the APP or another API).</div><div class=""><br class=""></div><div class="">Other examples maybe a counter helper, weak reference to something, etc. There is a infinite examples when we need to declare some variable just to make the "api" happy like add a observer, holding some value, and use this again to removeobserver in dealloc.</div></div><div class=""><br class=""></div><div class="">I believe that the same rules and the same mechanisms involving default implementation functions, should govern this default property implementation, and any discussion about it on the problems on protocols rules should be made separate this thread.</div></div></div></div></blockquote><br class=""></div><div class="">Default implementations of functions don’t require per-instance state, while adding a stored property via a protocol extension does. Let’s step back to a simpler problem: stored properties in (non-protocol) extensions.</div><div class=""><br class=""></div><div class="">In the existing language, one can only introduce stored properties in the primary definition of the type. That’s because, when we create an instance of that type, we need to know how much storage to allocate for that instance. So, right now, we don’t even allow, e.g.,</div><div class=""><br class=""></div><div class=""><span style="white-space:pre-wrap" class="">        </span>struct MyStruct { }</div><div class=""><span style="white-space:pre-wrap" class="">        </span>extension MyStruct { var storage: Int = 0 } // error: extensions may not contain stored properties</div><div class=""><br class=""></div><div class=""><span style="white-space:pre-wrap" class="">        </span>class MyClass { }</div><div class=""><span style="white-space:pre-wrap" class="">        </span>extension MyClass { var storage: Int = 0 } // error: extensions may not contain stored properties</div><div class=""><br class=""></div><div class="">because, in the worst case, we don’t know about the storage required for the “storage” property until after we’ve allocated some instances of MyStruct or MyClass, and we can’t simply go back and resize those instances when we learn about the “storage” property. The “worst case” here could come about with shared libraries: put the MyStruct/MyClass primary definitions into an app, then put the extensions into a separate shared library. The app creates some MyStruct and MyClass instances, then loads the shared library, and now we have a problem: those instances have no storage for “storage.”</div><div class=""><br class=""></div><div class="">We could relax the requirement to allow extensions in the same module as the primary definition of that type to introduce stored properties, because they’re compiled along with the primary type definition anyway. This doesn’t solve out-of-module extensions, of course.</div><div class=""><br class=""></div><div class="">We could embed a pointer into each instance that points off to the stored properties for that instance. The pointer would refer to some lazily-allocated memory on the heap with that extra storage. However, this would either bloat every data structure by a pointer (including “Int”!) or have to be opt-in, neither of which are great. I don’t think there is any reasonable implementation for out-of-module stored properties in extensions of value types (struct/enum).</div><div class=""><br class=""></div><div class="">For classes, where we have object identity, we could have a side table containing the stored properties (keyed on the object’s address). This is how Objective-C’s associated objects work, and it’s a reasonable module for out-of-module stored properties in extensions of classes.</div><div class=""><br class=""></div><div class="">Getting back to stored properties in protocol extensions, the general feature isn’t implementable without having some mechanism for out-of-module stored properties in extensions of structs and enums, so you can limit it in a few ways:</div><div class=""><br class=""></div><div class=""><span style="white-space:pre-wrap" class="">        </span>* Only allow them on class-bound protocols, where there is a reasonable implementation model</div><div class=""><br class=""></div><div class=""><span style="white-space:pre-wrap" class="">        </span>* Allow them as default implementations within a protocol (not an extension of a protocol!); a type can conform to that protocol either by providing its own implementation of that property or somewhere where it is reasonable for the default implementation to inject a stored property into that context (e.g., on the primary type, within the same module as the primary type, or on a class).</div><div class=""><br class=""></div><div class="">Either handles the example brought up in the discussion of abstract base classes.</div><div class=""><br class=""></div><div class=""><span style="white-space:pre-wrap" class="">        </span>- Doug</div><div class=""><br class=""></div><br class="">
<img src="https://u2002410.ct.sendgrid.net/wf/open?upn=Vm9j-2B2K6zLqxUFTO82XA8HV2TThDz5lA3-2F-2Fpeujw7DRfJ2Bw8o0u1Pzh6v6ZBgV6klo88ACaK7vNZMlQ0lT1pT4Xg5VF8NmHSXwBGZpMKVBX0RxNiP1dDGi6unMzgRRViPewuy4QXsgHfCiODtoGJxt1QzkyAzsmFjejDQL24FUKnVH1G6r0r-2FiCBPEb9bc-2BJQ9ii-2BTMvNyEVEPVpZ-2FMkmOeDKdH4kI4KUpi-2BCfqzKc-3D" alt="" width="1" height="1" border="0" style="min-height:1px!important;width:1px!important;border-width:0!important;margin-top:0!important;margin-bottom:0!important;margin-right:0!important;margin-left:0!important;padding-top:0!important;padding-bottom:0!important;padding-right:0!important;padding-left:0!important" class="">
</div>
</blockquote><br class=""><br class="">-- <br class="">&nbsp; -- Howard.<br class=""><br class="">
</div></blockquote></div><br class=""></body></html>