<div dir="ltr"><div class="gmail_default" style="font-family:arial,helvetica,sans-serif">The existence of `super` in classes makes sense as to why it&#39;s required.</div><div class="gmail_extra"><br clear="all"><div><div class="gmail_signature"><div dir="ltr"><div><div dir="ltr"><br><div>-- diego</div></div></div></div></div></div>
<br><div class="gmail_quote">On 17 January 2016 at 11:23, Brent Royal-Gordon <span dir="ltr">&lt;<a href="mailto:brent@architechies.com" target="_blank">brent@architechies.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">&gt; I&#39;m just curious as to why the self (in bold) is needed in the init() that&#39;s calling init(x: Double, y: Double)? Can&#39;t the compiler infer from the parameters what should be called?<br>
<br>
</span>My interpretation: The `self` must be explicit here to differentiate it from `super.init`. You can&#39;t use `super.init` in a struct, of course, but in a class this is a super, super crucial distinction, so it&#39;s helpful for the compiler to force you to be clear about this in a class. Structs have the same rule simply because it would be more frustrating if it were inconsistent.<br>
<span class="HOEnZb"><font color="#888888"><br>
--<br>
Brent Royal-Gordon<br>
Architechies<br>
<br>
</font></span></blockquote></div><br></div></div>