<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: 11.1 &#8212; Introduction to inheritance</title>
	<atom:link href="http://www.learncpp.com/cpp-tutorial/111-introduction-to-inheritance/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.learncpp.com/cpp-tutorial/111-introduction-to-inheritance/</link>
	<description></description>
	<lastBuildDate>Tue, 07 Feb 2012 12:30:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Thomas G. Marshall</title>
		<link>http://www.learncpp.com/cpp-tutorial/111-introduction-to-inheritance/comment-page-1/#comment-89791</link>
		<dc:creator>Thomas G. Marshall</dc:creator>
		<pubDate>Sat, 07 Aug 2010 14:41:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/111-introduction-to-inheritance/#comment-89791</guid>
		<description>Why are the inheritance directions &lt;i&gt;opposite&lt;/i&gt; from traditional UML directions?  Square inherits from Rectangle.  In OOML&#039;s this is describe as &lt;pre&gt;
    Rectangle &lt;-- Square
&lt;/pre&gt;
or more precisely in UML specifically to classes
&lt;pre&gt;
    Rectangle &lt;&#124;-- Square
&lt;/pre&gt;

(???)</description>
		<content:encoded><![CDATA[<p>Why are the inheritance directions <i>opposite</i> from traditional UML directions?  Square inherits from Rectangle.  In OOML&#8217;s this is describe as
<pre>
    Rectangle &lt;-- Square
</pre>
<p>or more precisely in UML specifically to classes</p>
<pre>
    Rectangle &lt;|-- Square
</pre>
<p>(???)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BHIKSHAPATHI</title>
		<link>http://www.learncpp.com/cpp-tutorial/111-introduction-to-inheritance/comment-page-1/#comment-84827</link>
		<dc:creator>BHIKSHAPATHI</dc:creator>
		<pubDate>Mon, 17 May 2010 18:10:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/111-introduction-to-inheritance/#comment-84827</guid>
		<description>why inheritance?without inheritance cant i do what exactly inheritance does.</description>
		<content:encoded><![CDATA[<p>why inheritance?without inheritance cant i do what exactly inheritance does.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Getting Started with OpenFrameworks &#124; Stephen Braitsch</title>
		<link>http://www.learncpp.com/cpp-tutorial/111-introduction-to-inheritance/comment-page-1/#comment-72176</link>
		<dc:creator>Getting Started with OpenFrameworks &#124; Stephen Braitsch</dc:creator>
		<pubDate>Fri, 13 Nov 2009 05:05:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/111-introduction-to-inheritance/#comment-72176</guid>
		<description>[...] we will gain access to the frame rate and background color properties of the ofBaseApp class via inheritance as we&#8217;ll see in the ParticleEmitter class definition in a [...]</description>
		<content:encoded><![CDATA[<p>[...] we will gain access to the frame rate and background color properties of the ofBaseApp class via inheritance as we&#8217;ll see in the ParticleEmitter class definition in a [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: prabodh</title>
		<link>http://www.learncpp.com/cpp-tutorial/111-introduction-to-inheritance/comment-page-1/#comment-46499</link>
		<dc:creator>prabodh</dc:creator>
		<pubDate>Mon, 23 Feb 2009 14:09:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/111-introduction-to-inheritance/#comment-46499</guid>
		<description>Intro. abt inheritance is good

but i have lots of confusion in inheritance like public,private and protected decleration (in inheritance)....please give me the simple trick so that i can understand very easily.........</description>
		<content:encoded><![CDATA[<p>Intro. abt inheritance is good</p>
<p>but i have lots of confusion in inheritance like public,private and protected decleration (in inheritance)&#8230;.please give me the simple trick so that i can understand very easily&#8230;&#8230;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eugene Wee</title>
		<link>http://www.learncpp.com/cpp-tutorial/111-introduction-to-inheritance/comment-page-1/#comment-43406</link>
		<dc:creator>Eugene Wee</dc:creator>
		<pubDate>Fri, 13 Feb 2009 08:29:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/111-introduction-to-inheritance/#comment-43406</guid>
		<description>Actually, reuse of existing code can already happen with composition and the calling of existing functions. The key benefit of (public) inheritance is not that it allows you to reuse parts of some existing class, but that it allows you to write new code that is used/reused by existing code, through polymorphism :)

In this sense, it is usually wrong to &quot;hide features you do not want&quot;, since it means that your derived class would no longer be Liskov substitutable for the base class.</description>
		<content:encoded><![CDATA[<p>Actually, reuse of existing code can already happen with composition and the calling of existing functions. The key benefit of (public) inheritance is not that it allows you to reuse parts of some existing class, but that it allows you to write new code that is used/reused by existing code, through polymorphism :)</p>
<p>In this sense, it is usually wrong to &#8220;hide features you do not want&#8221;, since it means that your derived class would no longer be Liskov substitutable for the base class.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: weirdolino</title>
		<link>http://www.learncpp.com/cpp-tutorial/111-introduction-to-inheritance/comment-page-1/#comment-20489</link>
		<dc:creator>weirdolino</dc:creator>
		<pubDate>Mon, 07 Jul 2008 13:46:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/111-introduction-to-inheritance/#comment-20489</guid>
		<description>Typo: &quot;...have to be added to multiples copies...&quot; --&gt; multiple</description>
		<content:encoded><![CDATA[<p>Typo: &#8220;&#8230;have to be added to multiples copies&#8230;&#8221; &#8211;&gt; multiple</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Learn C++ - &#187; 10.4 &#8212; Container classes</title>
		<link>http://www.learncpp.com/cpp-tutorial/111-introduction-to-inheritance/comment-page-1/#comment-14417</link>
		<dc:creator>Learn C++ - &#187; 10.4 &#8212; Container classes</dc:creator>
		<pubDate>Mon, 05 May 2008 02:16:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/111-introduction-to-inheritance/#comment-14417</guid>
		<description>[...]  11.1 â€” Introduction to inheritance [...]</description>
		<content:encoded><![CDATA[<p>[...]  11.1 â€” Introduction to inheritance [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Learn C++ - &#187; 11.6 -- Adding, changing, and hiding members in a derived class</title>
		<link>http://www.learncpp.com/cpp-tutorial/111-introduction-to-inheritance/comment-page-1/#comment-6205</link>
		<dc:creator>Learn C++ - &#187; 11.6 -- Adding, changing, and hiding members in a derived class</dc:creator>
		<pubDate>Fri, 18 Jan 2008 00:06:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.learncpp.com/cpp-tutorial/111-introduction-to-inheritance/#comment-6205</guid>
		<description>[...] &#8212; Adding, changing, and hiding members in a derived class   By Alex     In the introduction to inheritance lesson, we mentioned that one of the biggest benefits of using derived classes is the ability to [...]</description>
		<content:encoded><![CDATA[<p>[...] &#8212; Adding, changing, and hiding members in a derived class   By Alex     In the introduction to inheritance lesson, we mentioned that one of the biggest benefits of using derived classes is the ability to [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

