<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feeds.feedsky.com/styles/temp01.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feeds.feedsky.com/csdn.net/islwj" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/islwj" type="application/rss+xml"></fs:self_link><lastBuildDate>Mon, 30 Oct 2006 16:09:00 GMT</lastBuildDate><title>islwj的专栏</title><link>http://blog.csdn.net/islwj/</link><item><title>对后缀自增自减的误解</title><link>http://blog.csdn.net/islwj/archive/2006/10/30/1357124.aspx</link><wfw:comment>http://blog.csdn.net/islwj/comments/1357124.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/islwj/comments/commentRss/1357124.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1357124</trackback:ping><description>对自增自减的后缀式,一般解释是:先使用再自增自减,其实这是一个错误的理解,有时候可能造成令人难以理解的错误.&lt;img src =&quot;http://blog.csdn.net/islwj/aggbug/1357124.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 31 Oct 2006 00:09:00 +0800</pubDate><author>islwj</author><comments>http://blog.csdn.net/islwj/archive/2006/10/30/1357124.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/islwj/archive/2006/10/30/1357124.aspx</guid><dc:creator>islwj</dc:creator></item><item><title>总是优先使用++、--的前缀形式</title><link>http://blog.csdn.net/islwj/archive/2006/10/19/1340371.aspx</link><wfw:comment>http://blog.csdn.net/islwj/comments/1340371.aspx</wfw:comment><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/islwj/comments/commentRss/1340371.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1340371</trackback:ping><description>编程的时候应该尽可能使用递增操作符 ++ 和递减操作符 -- 的前缀形式.因为它少创建两个临时对象,效率比较高.&lt;img src =&quot;http://blog.csdn.net/islwj/aggbug/1340371.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 19 Oct 2006 16:17:00 +0800</pubDate><author>islwj</author><comments>http://blog.csdn.net/islwj/archive/2006/10/19/1340371.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/islwj/archive/2006/10/19/1340371.aspx</guid><dc:creator>islwj</dc:creator></item><item><title>深入理解成员函数的重载、隐藏、覆盖规则(二)</title><link>http://blog.csdn.net/islwj/archive/2006/09/07/1189396.aspx</link><wfw:comment>http://blog.csdn.net/islwj/comments/1189396.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/islwj/comments/commentRss/1189396.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1189396</trackback:ping><description>林锐博士对覆盖规则的定义如下:

　　(1)不同的范围（分别位于派生类与基类）;
　　(2)函数名字相同;
　　(3)参数相同;
　　(4)基类函数必须有virtual 关键字.

　　这样来理解重载、隐藏、覆盖确实是有点令人困惑.其实这个(覆盖)定义就是类的虚函数的定义.即,基类中,必须有virtual关键字,派生类函数的原型必须相同.

&lt;img src =&quot;http://blog.csdn.net/islwj/aggbug/1189396.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 07 Sep 2006 19:52:00 +0800</pubDate><author>islwj</author><comments>http://blog.csdn.net/islwj/archive/2006/09/07/1189396.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/islwj/archive/2006/09/07/1189396.aspx</guid><dc:creator>islwj</dc:creator></item><item><title>深入理解成员函数的重载、隐藏、覆盖规则（一）</title><link>http://blog.csdn.net/islwj/archive/2006/08/29/1134344.aspx</link><wfw:comment>http://blog.csdn.net/islwj/comments/1134344.aspx</wfw:comment><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/islwj/comments/commentRss/1134344.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1134344</trackback:ping><description>看了林锐博士的《高质量Ｃ＋＋／Ｃ编程指南》，受益非浅。
　　其中的“成员函数的重载、覆盖、隐藏 ”这一节点出了一些本质的东西，可能因为博士处一个比较高的位置，对一些问题看来是理所当然，所以其解释可能过于简单，对初学者可能不是十分好理解。
　　下面，我就这三个规则提出一些个人的看法，理解。这个三规则的顺序我认为应该改为“重载、隐藏、覆盖”来讲，可能思路会清晰一些。&lt;img src =&quot;http://blog.csdn.net/islwj/aggbug/1134344.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 29 Aug 2006 09:04:00 +0800</pubDate><author>islwj</author><comments>http://blog.csdn.net/islwj/archive/2006/08/29/1134344.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/islwj/archive/2006/08/29/1134344.aspx</guid><dc:creator>islwj</dc:creator></item><item><title>对输入输出（&gt;&gt;,&lt;&lt;）操作符的理解</title><link>http://blog.csdn.net/islwj/archive/2006/08/27/1125291.aspx</link><wfw:comment>http://blog.csdn.net/islwj/comments/1125291.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/islwj/comments/commentRss/1125291.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1125291</trackback:ping><description>　　对着一个字来看，时间长一点就会觉得真的是这个字吗？同样对着（&gt;）这两个操作符时间一久就会起疑问，为什么 &gt;&gt; 代表输入，而 &lt;&lt; 代表输出呢？&lt;img src =&quot;http://blog.csdn.net/islwj/aggbug/1125291.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sun, 27 Aug 2006 08:57:00 +0800</pubDate><author>islwj</author><comments>http://blog.csdn.net/islwj/archive/2006/08/27/1125291.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/islwj/archive/2006/08/27/1125291.aspx</guid><dc:creator>islwj</dc:creator></item></channel></rss>
