<?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: C++ Typecasting Part 2 &#8211; RTTI, dynamic_cast, typeid and type_info</title>
	<atom:link href="http://www.codingunit.com/cplusplus-tutorial-typecasting-part-2-rtti-dynamic_cast-typeid-and-type_info/feed" rel="self" type="application/rss+xml" />
	<link>http://www.codingunit.com/cplusplus-tutorial-typecasting-part-2-rtti-dynamic_cast-typeid-and-type_info</link>
	<description>CodingUnit is your online resource for learning to program. Tutorials on C, C++, PHP, Python, MySQL, Java, JQuery, Opengl, DirectX and much more!</description>
	<lastBuildDate>Mon, 06 Feb 2012 06:08:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>By: ABDUL</title>
		<link>http://www.codingunit.com/cplusplus-tutorial-typecasting-part-2-rtti-dynamic_cast-typeid-and-type_info/comment-page-1#comment-4341</link>
		<dc:creator>ABDUL</dc:creator>
		<pubDate>Thu, 08 Dec 2011 04:44:27 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/?p=550#comment-4341</guid>
		<description>SOOOOOOOOOOOOOOOOOOOOPPPPEEER!!</description>
		<content:encoded><![CDATA[<p>SOOOOOOOOOOOOOOOOOOOOPPPPEEER!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: yathri</title>
		<link>http://www.codingunit.com/cplusplus-tutorial-typecasting-part-2-rtti-dynamic_cast-typeid-and-type_info/comment-page-1#comment-3832</link>
		<dc:creator>yathri</dc:creator>
		<pubDate>Fri, 07 Oct 2011 17:04:25 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/?p=550#comment-3832</guid>
		<description>its super but need more information thanks</description>
		<content:encoded><![CDATA[<p>its super but need more information thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amu</title>
		<link>http://www.codingunit.com/cplusplus-tutorial-typecasting-part-2-rtti-dynamic_cast-typeid-and-type_info/comment-page-1#comment-3391</link>
		<dc:creator>Amu</dc:creator>
		<pubDate>Mon, 09 May 2011 06:18:45 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/?p=550#comment-3391</guid>
		<description>how exactly typeid is returning type_info&amp;?.. In the type_info class constructor is in private mode..</description>
		<content:encoded><![CDATA[<p>how exactly typeid is returning type_info&amp;?.. In the type_info class constructor is in private mode..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sonia</title>
		<link>http://www.codingunit.com/cplusplus-tutorial-typecasting-part-2-rtti-dynamic_cast-typeid-and-type_info/comment-page-1#comment-3380</link>
		<dc:creator>Sonia</dc:creator>
		<pubDate>Fri, 29 Apr 2011 15:03:43 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/?p=550#comment-3380</guid>
		<description>i like this detail explanation.thanks</description>
		<content:encoded><![CDATA[<p>i like this detail explanation.thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anish Jain</title>
		<link>http://www.codingunit.com/cplusplus-tutorial-typecasting-part-2-rtti-dynamic_cast-typeid-and-type_info/comment-page-1#comment-3278</link>
		<dc:creator>Anish Jain</dc:creator>
		<pubDate>Sat, 05 Mar 2011 09:41:18 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/?p=550#comment-3278</guid>
		<description>i like it man ....</description>
		<content:encoded><![CDATA[<p>i like it man &#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shilpa</title>
		<link>http://www.codingunit.com/cplusplus-tutorial-typecasting-part-2-rtti-dynamic_cast-typeid-and-type_info/comment-page-1#comment-1951</link>
		<dc:creator>shilpa</dc:creator>
		<pubDate>Sat, 20 Nov 2010 20:27:07 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/?p=550#comment-1951</guid>
		<description>thanks for this explanation.i am searched many websites but i have not get like this point detail explanation.</description>
		<content:encoded><![CDATA[<p>thanks for this explanation.i am searched many websites but i have not get like this point detail explanation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.codingunit.com/cplusplus-tutorial-typecasting-part-2-rtti-dynamic_cast-typeid-and-type_info/comment-page-1#comment-961</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Mon, 07 Jun 2010 21:18:42 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/?p=550#comment-961</guid>
		<description>Yes, you are right, &lt;strong&gt;dynamic_casts comes at a price&lt;/strong&gt;. A good rule is to do type checking that can take place at compile time than at run-time. Further more early type checking ensures faster execution time and in most cases a smaller executable. (Also in most cases, early type checking ensures early error detection, this can be even more important than the previous two!) But you should never overdo dynamic_casts! So if you find yourself using dynamic_cast extensively, you should always take another look at your applications design.</description>
		<content:encoded><![CDATA[<p>Yes, you are right, <strong>dynamic_casts comes at a price</strong>. A good rule is to do type checking that can take place at compile time than at run-time. Further more early type checking ensures faster execution time and in most cases a smaller executable. (Also in most cases, early type checking ensures early error detection, this can be even more important than the previous two!) But you should never overdo dynamic_casts! So if you find yourself using dynamic_cast extensively, you should always take another look at your applications design.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kumar Santosh</title>
		<link>http://www.codingunit.com/cplusplus-tutorial-typecasting-part-2-rtti-dynamic_cast-typeid-and-type_info/comment-page-1#comment-960</link>
		<dc:creator>Kumar Santosh</dc:creator>
		<pubDate>Mon, 07 Jun 2010 10:22:51 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/?p=550#comment-960</guid>
		<description>dynamic_cast comes at price, so one should be moderate in choosing the typeid and dynamic_cast. because, dynamic_cast has to traverse the entire hierarchy to determine the type of the object.</description>
		<content:encoded><![CDATA[<p>dynamic_cast comes at price, so one should be moderate in choosing the typeid and dynamic_cast. because, dynamic_cast has to traverse the entire hierarchy to determine the type of the object.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

