<?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/iu_81" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/iu_81" type="application/rss+xml"></fs:self_link><lastBuildDate>Fri, 06 Mar 2009 22:39:00 GMT</lastBuildDate><title>iu_81的专栏</title><description>黄云万里动风色，白波九道流雪山</description><link>http://blog.csdn.net/iu_81/</link><item><title>随笔</title><link>http://blog.csdn.net/iu_81/archive/2009/03/06/3964659.aspx</link><wfw:comment>http://blog.csdn.net/iu_81/comments/3964659.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/iu_81/comments/commentRss/3964659.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3964659</trackback:ping><description>arm&lt;img src =&quot;http://blog.csdn.net/iu_81/aggbug/3964659.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 07 Mar 2009 06:39:00 +0800</pubDate><author>iu_81</author><comments>http://blog.csdn.net/iu_81/archive/2009/03/06/3964659.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/iu_81/archive/2009/03/06/3964659.aspx</guid><dc:creator>iu_81</dc:creator></item><item><title>常见内存错误</title><link>http://blog.csdn.net/iu_81/archive/2008/04/26/2330402.aspx</link><wfw:comment>http://blog.csdn.net/iu_81/comments/2330402.aspx</wfw:comment><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/iu_81/comments/commentRss/2330402.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2330402</trackback:ping><description>&lt;br /&gt;1.         内存泄露。大家都知道，在堆上分配的内存，如果不再使用了，应该把它释放掉，以便后面其它地方可以重用。在C/C++中，内存管理器不会帮你自动回收不再使用的内存。如果你忘了释放不再使用的内存，这些内存就不能被重用，就造成了所谓的内存泄露。   把内存泄露列为首位，倒并不是因为它有多么严重的后果，而因为它是最为常见的一类错误。一两处内存泄露通常不至于让程序崩溃，也不会出现逻辑上的错误，加上进程退出时，系统会自动释放该进程所有相关的内存，所以内存泄露的后果相对来说还是比较温和的。当然了，量变会产生质变，一旦内存泄露过多以致于耗尽内存，后续内存分配将会失败，程序可能因此而崩溃。   现在的PC机内存够大了，加上进程有独立的内存空间，对于一些小程序来说，内存泄露已经不是太大的威胁。但对于大型软件，特别是长时间运行的软件，或者嵌入式系统来说，内存泄露仍然是致命的因素之一。   不管在什么情况下，采取比较谨慎的态度，杜绝内存泄露的出现，都是可取的。相反，认为内存有的是&lt;img src =&quot;http://blog.csdn.net/iu_81/aggbug/2330402.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 26 Apr 2008 17:27:00 +0800</pubDate><author>iu_81</author><comments>http://blog.csdn.net/iu_81/archive/2008/04/26/2330402.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/iu_81/archive/2008/04/26/2330402.aspx</guid><dc:creator>iu_81</dc:creator></item><item><title>C++程序中的内存划分</title><link>http://blog.csdn.net/iu_81/archive/2008/04/26/2330314.aspx</link><wfw:comment>http://blog.csdn.net/iu_81/comments/2330314.aspx</wfw:comment><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/iu_81/comments/commentRss/2330314.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2330314</trackback:ping><description>&lt;br /&gt;在C++中，内存分成5个区，他们分别是堆、栈、自由存储区、全局/静态存储区和常量存储区。　　&lt;br /&gt;栈，就是那些由编译器在需要的时候分配，在不需要的时候自动清楚的变量的存储区。里面的变量通常是局部变量、函数参数等。&lt;br /&gt;堆，就是那些由new分配的内存块，他们的释放编译器不去管，由我们的应用程序去控制，一般一个new就要对应一个delete。如果程序员没有释放掉，那么在程序结束后，操作系统会自动回收。　　&lt;br /&gt;自由存储区，就是那些由malloc等分配的内存块，他和堆是十分相似的，不过它是用free来结束自己的生命的。&lt;br /&gt;全局/静态存储区，全局变量和静态变量被分配到同一块内存中，在以前的C语言中，全局变量又分为初始化的和未初始化的，在C++里面没有这个区分了，他们共同占用同一块内存区。　　&lt;br /&gt;常量存储区，这是一块比较特殊的存储区，他们里面存放的是常量，不允许修改&lt;img src =&quot;http://blog.csdn.net/iu_81/aggbug/2330314.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 26 Apr 2008 16:34:00 +0800</pubDate><author>iu_81</author><comments>http://blog.csdn.net/iu_81/archive/2008/04/26/2330314.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/iu_81/archive/2008/04/26/2330314.aspx</guid><dc:creator>iu_81</dc:creator></item><item><title>二维指针与二维数组</title><link>http://blog.csdn.net/iu_81/archive/2008/04/19/2306014.aspx</link><wfw:comment>http://blog.csdn.net/iu_81/comments/2306014.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/iu_81/comments/commentRss/2306014.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2306014</trackback:ping><description>二维指针&lt;img src =&quot;http://blog.csdn.net/iu_81/aggbug/2306014.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 19 Apr 2008 08:25:00 +0800</pubDate><author>iu_81</author><comments>http://blog.csdn.net/iu_81/archive/2008/04/19/2306014.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/iu_81/archive/2008/04/19/2306014.aspx</guid><dc:creator>iu_81</dc:creator></item><item><title>事件与消息编程</title><link>http://blog.csdn.net/iu_81/archive/2008/02/14/2091425.aspx</link><wfw:comment>http://blog.csdn.net/iu_81/comments/2091425.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/iu_81/comments/commentRss/2091425.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2091425</trackback:ping><description>事件与消息&lt;img src =&quot;http://blog.csdn.net/iu_81/aggbug/2091425.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 14 Feb 2008 17:48:00 +0800</pubDate><author>iu_81</author><comments>http://blog.csdn.net/iu_81/archive/2008/02/14/2091425.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/iu_81/archive/2008/02/14/2091425.aspx</guid><dc:creator>iu_81</dc:creator></item><item><title>消息与事件</title><link>http://blog.csdn.net/iu_81/archive/2008/02/14/2091376.aspx</link><wfw:comment>http://blog.csdn.net/iu_81/comments/2091376.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/iu_81/comments/commentRss/2091376.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2091376</trackback:ping><description>事件与消息&lt;img src =&quot;http://blog.csdn.net/iu_81/aggbug/2091376.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 14 Feb 2008 17:45:00 +0800</pubDate><author>iu_81</author><comments>http://blog.csdn.net/iu_81/archive/2008/02/14/2091376.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/iu_81/archive/2008/02/14/2091376.aspx</guid><dc:creator>iu_81</dc:creator></item><item><title>32位彩色图像转换成256级灰度图的算法</title><link>http://blog.csdn.net/iu_81/archive/2007/10/19/1833389.aspx</link><wfw:comment>http://blog.csdn.net/iu_81/comments/1833389.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/iu_81/comments/commentRss/1833389.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1833389</trackback:ping><description>32位彩色图像转换成256级灰度图的算法&lt;img src =&quot;http://blog.csdn.net/iu_81/aggbug/1833389.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 20 Oct 2007 03:35:00 +0800</pubDate><author>iu_81</author><comments>http://blog.csdn.net/iu_81/archive/2007/10/19/1833389.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/iu_81/archive/2007/10/19/1833389.aspx</guid><dc:creator>iu_81</dc:creator></item><item><title>给工具条加标题</title><link>http://blog.csdn.net/iu_81/archive/2007/10/17/1829887.aspx</link><wfw:comment>http://blog.csdn.net/iu_81/comments/1829887.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/iu_81/comments/commentRss/1829887.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1829887</trackback:ping><description>给工具条加标题&lt;img src =&quot;http://blog.csdn.net/iu_81/aggbug/1829887.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 18 Oct 2007 04:44:00 +0800</pubDate><author>iu_81</author><comments>http://blog.csdn.net/iu_81/archive/2007/10/17/1829887.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/iu_81/archive/2007/10/17/1829887.aspx</guid><dc:creator>iu_81</dc:creator></item><item><title>类型转换</title><link>http://blog.csdn.net/iu_81/archive/2007/10/09/1817379.aspx</link><wfw:comment>http://blog.csdn.net/iu_81/comments/1817379.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/iu_81/comments/commentRss/1817379.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1817379</trackback:ping><description>类型转换&lt;img src =&quot;http://blog.csdn.net/iu_81/aggbug/1817379.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 10 Oct 2007 04:12:00 +0800</pubDate><author>iu_81</author><comments>http://blog.csdn.net/iu_81/archive/2007/10/09/1817379.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/iu_81/archive/2007/10/09/1817379.aspx</guid><dc:creator>iu_81</dc:creator></item><item><title>oracle rowid介绍</title><link>http://blog.csdn.net/iu_81/archive/2007/10/09/1817376.aspx</link><wfw:comment>http://blog.csdn.net/iu_81/comments/1817376.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/iu_81/comments/commentRss/1817376.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1817376</trackback:ping><description>oracle rowid介绍&lt;img src =&quot;http://blog.csdn.net/iu_81/aggbug/1817376.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 10 Oct 2007 04:07:00 +0800</pubDate><author>iu_81</author><comments>http://blog.csdn.net/iu_81/archive/2007/10/09/1817376.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/iu_81/archive/2007/10/09/1817376.aspx</guid><dc:creator>iu_81</dc:creator></item></channel></rss>