<div class="gmail_quote">On Fri, Jul 13, 2012 at 11:26 PM, Era Scarecrow <span dir="ltr"><<a href="mailto:rtcvb32@yahoo.com" target="_blank">rtcvb32@yahoo.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="im">On Friday, 13 July 2012 at 19:08:54 UTC, Gor Gyolchanyan wrote:<br>
<br>
</div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

If you make seed static, then Appleseed & apple will have access to Fruit but seed (by itself) won't. Other combinations faile as far as I can tell. How far you can take inner class inheritance I don't know, but it seems not that many levels.<br>

</blockquote>
<br></div><div class="im">
This all won't work, because having Fruit know about Apple defeats the<br>
whole purpose.<br>
</div></blockquote>
<br>
So why not...??<br>
<br>
class Seed{} //same as static class in fruit<div class="im"><br>
<br>
class Apple {<br>
  class Appleseed : Seed {}<br>
}<br>
<br></div>
 Perhaps you would rather have Seed as an interface instead? It seems like I need a full detail of how everything connects together, so let's see..<br>
<br>
 Fruit covers apple (but maybe not seed)<br>
 Apple covers (and is a class of) fruit, but also contains a seed (or the seed pertains to Apple specifically)<br>
 All fruits (including apple's) have seeds that do specific things, namely plant, water and grow, and perhaps produceFruit.<br>
<br>
 If that isn't right, explain how the relationship of it all goes and a possible solution may show itself.<br>
</blockquote></div><br>The seed can't be an interface because it needs to contain state. For instance the progress towards becoming the respective fruit.<div><br></div><div>The seed needs to be aware of the fruit it came from to access the fruit's DNA to inherit the traits of that fruit when it grows into a fruit of its own. (Please note, that it's just an example).</div>
<div><br></div><div>A fruit can have multiple such seeds, each of which must have it's own state and connection to the same fruit they came from.</div><div><br></div><div>So, we start off by inheriting from Fruit, defining the properties of that fruit (It's an Apple, it's delicious and it goes great in a pie). Then we define several different types of Apple seeds, each of which need access to the apple.<br clear="all">
<div><br></div>-- <br>Bye,<br>Gor Gyolchanyan.<br>
</div>