<?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: New article &#8211; How inheritance, encapsulation and polymorphism work in C++</title>
	<atom:link href="http://www.alexonlinux.com/new-article-how-inheritance-encapsulation-and-polymorphism-work-in-c/feed" rel="self" type="application/rss+xml" />
	<link>http://www.alexonlinux.com/new-article-how-inheritance-encapsulation-and-polymorphism-work-in-c</link>
	<description></description>
	<lastBuildDate>Sun, 05 Feb 2012 21:17:46 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: norbert novat</title>
		<link>http://www.alexonlinux.com/new-article-how-inheritance-encapsulation-and-polymorphism-work-in-c/comment-page-1#comment-27695</link>
		<dc:creator>norbert novat</dc:creator>
		<pubDate>Fri, 11 Nov 2011 06:40:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.alexandersandler.net/?p=637#comment-27695</guid>
		<description>how encapsulation work in c++&lt;div class=&quot;comment-remix-meta&quot;&gt;&lt;a href=&quot;#&quot; class=&quot;replyto&quot; onclick=&quot;replyto(&#039;27695&#039;,&#039;norbert novat&#039;); return false;&quot;&gt;Reply&lt;/a&gt;  - &lt;a href=&quot;#&quot; class=&quot;quote&quot; onclick=&quot;quote(&#039;27695&#039;,&#039;norbert novat&#039;,&#039;how encapsulation work in c++&#039;); return false;&quot;&gt;Quote&lt;/a&gt;&lt;/div&gt;</description>
		<content:encoded><![CDATA[<p>how encapsulation work in c++
<div class="comment-remix-meta"><a href="#" class="replyto" onclick="replyto('27695','norbert novat'); return false;">Reply</a>  &#8211; <a href="#" class="quote" onclick="quote('27695','norbert novat','how encapsulation work in c++'); return false;">Quote</a></div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexander Sandler</title>
		<link>http://www.alexonlinux.com/new-article-how-inheritance-encapsulation-and-polymorphism-work-in-c/comment-page-1#comment-16180</link>
		<dc:creator>Alexander Sandler</dc:creator>
		<pubDate>Thu, 18 Dec 2008 06:48:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.alexandersandler.net/?p=637#comment-16180</guid>
		<description>To be honest I have no idea :-) I think I saw someone mentioning this. Anyway, I&#039;ll post the answer here if I run into it.&lt;div class=&quot;comment-remix-meta&quot;&gt;&lt;a href=&quot;#&quot; class=&quot;replyto&quot; onclick=&quot;replyto(&#039;16180&#039;,&#039;Alexander Sandler&#039;); return false;&quot;&gt;Reply&lt;/a&gt;  - &lt;a href=&quot;#&quot; class=&quot;quote&quot; onclick=&quot;quote(&#039;16180&#039;,&#039;Alexander Sandler&#039;,&#039;To be honest I have no idea :-) I think I saw someone mentioning this. Anyway, I\&#039;ll post the answer here if I run into it.&#039;); return false;&quot;&gt;Quote&lt;/a&gt;&lt;/div&gt;</description>
		<content:encoded><![CDATA[<p>To be honest I have no idea <img src='http://www.alexonlinux.com/wp-content/plugins/smilies-themer/modern/smile.gif' alt=':-)' class='wp-smiley' /> I think I saw someone mentioning this. Anyway, I&#8217;ll post the answer here if I run into it.
<div class="comment-remix-meta"><a href="#" class="replyto" onclick="replyto('16180','Alexander Sandler'); return false;">Reply</a>  &#8211; <a href="#" class="quote" onclick="quote('16180','Alexander Sandler','To be honest I have no idea :-) I think I saw someone mentioning this. Anyway, I\'ll post the answer here if I run into it.'); return false;">Quote</a></div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniil</title>
		<link>http://www.alexonlinux.com/new-article-how-inheritance-encapsulation-and-polymorphism-work-in-c/comment-page-1#comment-16012</link>
		<dc:creator>Daniil</dc:creator>
		<pubDate>Fri, 12 Dec 2008 16:42:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.alexandersandler.net/?p=637#comment-16012</guid>
		<description>Once I had question, I haven&#039;t find answer yet, so I want ask you?

When the sizeof of class isn&#039;t equal to sizeof of object of that class?

For example:

class A
{
};

A a;

sizeof(A) != sizeof(a);

Thanks&lt;div class=&quot;comment-remix-meta&quot;&gt;&lt;a href=&quot;#&quot; class=&quot;replyto&quot; onclick=&quot;replyto(&#039;16012&#039;,&#039;Daniil&#039;); return false;&quot;&gt;Reply&lt;/a&gt;  - &lt;a href=&quot;#&quot; class=&quot;quote&quot; onclick=&quot;quote(&#039;16012&#039;,&#039;Daniil&#039;,&#039;Once I had question, I haven\&#039;t find answer yet, so I want ask you?\r\n\r\nWhen the sizeof of class isn\&#039;t equal to sizeof of object of that class?\r\n\r\nFor example:\r\n\r\nclass A\r\n{\r\n};\r\n\r\nA a;\r\n\r\nsizeof(A) != sizeof(a);\r\n\r\nThanks&#039;); return false;&quot;&gt;Quote&lt;/a&gt;&lt;/div&gt;</description>
		<content:encoded><![CDATA[<p>Once I had question, I haven&#8217;t find answer yet, so I want ask you?</p>
<p>When the sizeof of class isn&#8217;t equal to sizeof of object of that class?</p>
<p>For example:</p>
<p>class A<br />
{<br />
};</p>
<p>A a;</p>
<p>sizeof(A) != sizeof(a);</p>
<p>Thanks
<div class="comment-remix-meta"><a href="#" class="replyto" onclick="replyto('16012','Daniil'); return false;">Reply</a>  &#8211; <a href="#" class="quote" onclick="quote('16012','Daniil','Once I had question, I haven\'t find answer yet, so I want ask you?\r\n\r\nWhen the sizeof of class isn\'t equal to sizeof of object of that class?\r\n\r\nFor example:\r\n\r\nclass A\r\n{\r\n};\r\n\r\nA a;\r\n\r\nsizeof(A) != sizeof(a);\r\n\r\nThanks'); return false;">Quote</a></div>
]]></content:encoded>
	</item>
</channel>
</rss>

