Do you means a array of protocol P, rather than a array of element conform with P?<br><div class="gmail_quote"><div dir="ltr">Dave Abrahams via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt;于2016年8月6日 周六13:22写道:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
on Fri Aug 05 2016, Boris Wang &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br>
<br>
&gt; Addition:<br>
&gt;<br>
&gt; I think protocol should&#39;t has size, or it&#39;s size should be zero.<br>
&gt; Because you can&#39;t put the 40 bytes data in anywhere.<br>
<br>
You certainly can.  If protocols didn&#39;t have a size, Array wouldn&#39;t be<br>
able to store them.<br>
<br>
&gt;<br>
&gt;<br>
&gt; Boris Wang &lt;<a href="mailto:kona.ming@gmail.com" target="_blank">kona.ming@gmail.com</a>&gt;于2016年8月6日 周六10:35写道:<br>
&gt;<br>
&gt;&gt; codes in swift REPL:<br>
&gt;&gt;<br>
&gt;&gt; protocol P {<br>
&gt;&gt; var x:Int {get}<br>
&gt;&gt; }<br>
&gt;&gt; MemoryLayout&lt;P&gt;.size<br>
&gt;&gt; //r0 : Int = 40<br>
&gt;&gt;<br>
&gt;&gt; struct S1 {<br>
&gt;&gt; var v1:Int = 0<br>
&gt;&gt; }<br>
&gt;&gt; MemoryLayout&lt;S1&gt;.size<br>
&gt;&gt; //r1: Int =8<br>
&gt;&gt;<br>
&gt;&gt; struct S2: P {<br>
&gt;&gt; var v2: Int<br>
&gt;&gt; var x:Int<br>
&gt;&gt; }<br>
&gt;&gt; MemoryLayout &lt;S2&gt;.size<br>
&gt;&gt; //r2: Int = 16<br>
&gt;&gt;<br>
&gt;&gt; ** Question:<br>
&gt;&gt; Why we need to known the size of a object that can&#39;t be instanced?<br>
&gt;&gt;<br>
&gt;&gt; ** Confuse:<br>
&gt;&gt; MemoryLayout &lt;S2.Type&gt;.size<br>
&gt;&gt; //r3: Int = 0<br>
&gt;&gt;<br>
&gt;&gt; MemoryLayout &lt;P.Type&gt;.size<br>
&gt;&gt; //r4: Int = 16<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Xiaodi Wu via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt;于2016年8月5日<br>
&gt;&gt; 周五16:34写道:<br>
&gt;&gt;<br>
&gt;&gt;&gt; On Thu, Aug 4, 2016 at 6:02 PM, Dave Abrahams &lt;<a href="mailto:dabrahams@apple.com" target="_blank">dabrahams@apple.com</a>&gt;<br>
&gt;&gt;&gt; wrote:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; on Thu Aug 04 2016, Dmitri Gribenko &lt;gribozavr-AT-gmail.com&gt; wrote:<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt; On Wed, Aug 3, 2016 at 7:28 PM, Xiaodi Wu via swift-evolution<br>
&gt;&gt;&gt;&gt; &gt; &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br>
&gt;&gt;&gt;&gt; &gt;&gt; Could I suggest an alternative? It&#39;s conservative in that it mimics<br>
&gt;&gt;&gt;&gt; the<br>
&gt;&gt;&gt;&gt; &gt;&gt; relationships we had before the proposal was implemented and also<br>
&gt;&gt;&gt;&gt; maintains<br>
&gt;&gt;&gt;&gt; &gt;&gt; the simplicity of the caseless enum:<br>
&gt;&gt;&gt;&gt; &gt;&gt;<br>
&gt;&gt;&gt;&gt; &gt;&gt; ```<br>
&gt;&gt;&gt;&gt; &gt;&gt; extension MemoryLayout {<br>
&gt;&gt;&gt;&gt; &gt;&gt;   static func size(ofValue _: T) -&gt; Int { return MemoryLayout.size }<br>
&gt;&gt;&gt;&gt; &gt;&gt;   // etc.<br>
&gt;&gt;&gt;&gt; &gt;&gt; }<br>
&gt;&gt;&gt;&gt; &gt;&gt; ```<br>
&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;&gt; &gt; I like this API.  I think given all the alternatives that we explored,<br>
&gt;&gt;&gt;&gt; &gt; it is better than those.  I also think that it nicely avoids the<br>
&gt;&gt;&gt;&gt; &gt; following issue with the proposed MemoryLayout.of(type(of:<br>
&gt;&gt;&gt;&gt; &gt; someExpression)).size syntax.<br>
&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;&gt; &gt; Imagine that you have a value whose static type differs from the<br>
&gt;&gt;&gt;&gt; &gt; dynamic type.  For example, a protocol existential:<br>
&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;&gt; &gt; protocol P {}<br>
&gt;&gt;&gt;&gt; &gt; extension Int : P {}<br>
&gt;&gt;&gt;&gt; &gt; var x: P = 10<br>
&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;&gt; &gt; The question is, what does MemoryLayout.of(type(of: x)).size compute,<br>
&gt;&gt;&gt;&gt; &gt; size of the existential box, or the size of an Int instance?  The<br>
&gt;&gt;&gt;&gt; &gt; semantics of &#39;type(of:)&#39; are &quot;return the dynamic type&quot;, so the<br>
&gt;&gt;&gt;&gt; &gt; straightforward conclusion is that MemoryLayout.of(type(of: x)).size<br>
&gt;&gt;&gt;&gt; &gt; returns the size of the dynamic type instance, of Int.<br>
&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;&gt; &gt; What actually happens is that &#39;type(of: x)&#39; returns a dynamic value of<br>
&gt;&gt;&gt;&gt; &gt; &#39;Int.self&#39;, statically typed as &#39;P.Type&#39;.  So P gets deduced for the<br>
&gt;&gt;&gt;&gt; &gt; generic parameter of MemoryLayout, and MemoryLayout.of(type(of:<br>
&gt;&gt;&gt;&gt; &gt; x)).size returns the size of the protocol box.<br>
&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;&gt; &gt; I think due to this complex interaction, using type(of:) might lead to<br>
&gt;&gt;&gt;&gt; &gt; confusing code, and thus I like Xiaodi&#39;s approach better.<br>
&gt;&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt;&gt; &gt; Dmitri<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Okay, I&#39;m convinced; that&#39;s what we should do.<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Proposal and stdlib PRs have both been created.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; --<br>
&gt;&gt;&gt;&gt; -Dave<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt; _______________________________________________<br>
&gt;&gt;&gt; swift-evolution mailing list<br>
&gt;&gt;&gt; <a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br>
&gt;&gt;&gt; <a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt; _______________________________________________<br>
&gt; swift-evolution mailing list<br>
&gt; <a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br>
&gt; <a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>
&gt;<br>
<br>
--<br>
-Dave<br>
<br>
_______________________________________________<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>