<?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>《橡皮鸭程序调试法》的评论</title>
	<atom:link href="http://coolshell.cn/articles/1719.html/feed" rel="self" type="application/rss+xml" />
	<link>http://coolshell.cn/articles/1719.html</link>
	<description>享受编程和技术所带来的快乐 - http://coolshell.cn</description>
	<lastBuildDate>Fri, 10 Feb 2012 05:00:28 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>作者：songtianyi</title>
		<link>http://coolshell.cn/articles/1719.html/comment-page-1#comment-63238</link>
		<dc:creator>songtianyi</dc:creator>
		<pubDate>Tue, 05 Jul 2011 06:42:35 +0000</pubDate>
		<guid isPermaLink="false">http://coolshell.cn/?p=1719#comment-63238</guid>
		<description>&lt;blockquote&gt;当你寻求他人的帮助时，对别人解释整个你的想法和意图或是问题背景的时候，你自己都没有解释完，就已经找到问题的原因了。&lt;/blockquote&gt;

的确是这样</description>
		<content:encoded><![CDATA[<blockquote><p>当你寻求他人的帮助时，对别人解释整个你的想法和意图或是问题背景的时候，你自己都没有解释完，就已经找到问题的原因了。</p></blockquote>
<p>的确是这样</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：五个方法成为更好的程序员 &#124; heroicYang&#039;s Blog</title>
		<link>http://coolshell.cn/articles/1719.html/comment-page-1#comment-9811</link>
		<dc:creator>五个方法成为更好的程序员 &#124; heroicYang&#039;s Blog</dc:creator>
		<pubDate>Wed, 08 Sep 2010 16:56:18 +0000</pubDate>
		<guid isPermaLink="false">http://coolshell.cn/?p=1719#comment-9811</guid>
		<description>[...] 千万别信自己的代码: 在任何时候，一定要高度怀疑自己的代码。很多时候，错误总是自己造成的。所以，当出现问题的时候，要学会review代码中所有的可疑点，千万别觉得某段代码很简单，可以略过。事实证明，很多疏忽大意都是在阴沟里翻的船，都是那些很低级的错误。在查错的过程中，切忌过早下结论，切忌四处乱改（参看《各种流行的编程风格》），停下来，想一想，会是哪儿的代码有重大嫌疑，然后查看一下代码，捋一捋程序的逻辑（参看《橡皮鸭程序调试法》），调试并验证一下程序的逻辑和变量在运行时是否是正确的。很多时候，对于那些难缠的问题，最后解决了总是因为我们开始认真回头审视所有的代码。只有对自己的代码保持着高度的怀疑，这样我们才会想着如何让其运行得更好更稳定，也会让我们在单元测试中下更多的功夫，这样才能更能在那忙碌的环境中节省时间。相信我，在集成测试中fix bug的成本要比在单元测试Fix bug的成本大得多的多。一个简单的例子就是memory leak。程序员对自己的程序需要有忧患意识，这样才会越来越成熟，而自己的能力也会越来越强。 [...]</description>
		<content:encoded><![CDATA[<p>[...] 千万别信自己的代码: 在任何时候，一定要高度怀疑自己的代码。很多时候，错误总是自己造成的。所以，当出现问题的时候，要学会review代码中所有的可疑点，千万别觉得某段代码很简单，可以略过。事实证明，很多疏忽大意都是在阴沟里翻的船，都是那些很低级的错误。在查错的过程中，切忌过早下结论，切忌四处乱改（参看《各种流行的编程风格》），停下来，想一想，会是哪儿的代码有重大嫌疑，然后查看一下代码，捋一捋程序的逻辑（参看《橡皮鸭程序调试法》），调试并验证一下程序的逻辑和变量在运行时是否是正确的。很多时候，对于那些难缠的问题，最后解决了总是因为我们开始认真回头审视所有的代码。只有对自己的代码保持着高度的怀疑，这样我们才会想着如何让其运行得更好更稳定，也会让我们在单元测试中下更多的功夫，这样才能更能在那忙碌的环境中节省时间。相信我，在集成测试中fix bug的成本要比在单元测试Fix bug的成本大得多的多。一个简单的例子就是memory leak。程序员对自己的程序需要有忧患意识，这样才会越来越成熟，而自己的能力也会越来越强。 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：五个方法成为更好的程序员 &#124; 酷壳 - CoolShell.cn</title>
		<link>http://coolshell.cn/articles/1719.html/comment-page-1#comment-8046</link>
		<dc:creator>五个方法成为更好的程序员 &#124; 酷壳 - CoolShell.cn</dc:creator>
		<pubDate>Thu, 22 Jul 2010 06:11:21 +0000</pubDate>
		<guid isPermaLink="false">http://coolshell.cn/?p=1719#comment-8046</guid>
		<description>[...] 千万别信自己的代码: 在任何时候，一定要高度怀疑自己的代码。很多时候，错误总是自己造成的。所以，当出现问题的时候，要学会review代码中所有的可疑点，千万别觉得某段代码很简单，可以略过。事实证明，很多疏忽大意都是在阴沟里翻的船，都是那些很低级的错误。在查错的过程中，切忌过早下结论，切忌四处乱改（参看《各种流行的编程风格》），停下来，想一想，会是哪儿的代码有重大嫌疑，然后查看一下代码，捋一捋程序的逻辑（参看《橡皮鸭程序调试法》），调试并验证一下程序的逻辑和变量在运行时是否是正确的。很多时候，对于那些难缠的问题，最后解决了总是因为我们开始认真回头审视所有的代码。只有对自己的代码保持着高度的怀疑，这样我们才会想着如何让其运行得更好更稳定，也会让我们在单元测试中下更多的功夫，这样才能更能在那忙碌的环境中节省时间。相信我，在集成测试中fix bug的成本要比在单元测试Fix bug的成本大得多的多。一个简单的例子就是memory leak。程序员对自己的程序需要有忧患意识，这样才会越来越成熟，而自己的能力也会越来越强。 [...]</description>
		<content:encoded><![CDATA[<p>[...] 千万别信自己的代码: 在任何时候，一定要高度怀疑自己的代码。很多时候，错误总是自己造成的。所以，当出现问题的时候，要学会review代码中所有的可疑点，千万别觉得某段代码很简单，可以略过。事实证明，很多疏忽大意都是在阴沟里翻的船，都是那些很低级的错误。在查错的过程中，切忌过早下结论，切忌四处乱改（参看《各种流行的编程风格》），停下来，想一想，会是哪儿的代码有重大嫌疑，然后查看一下代码，捋一捋程序的逻辑（参看《橡皮鸭程序调试法》），调试并验证一下程序的逻辑和变量在运行时是否是正确的。很多时候，对于那些难缠的问题，最后解决了总是因为我们开始认真回头审视所有的代码。只有对自己的代码保持着高度的怀疑，这样我们才会想着如何让其运行得更好更稳定，也会让我们在单元测试中下更多的功夫，这样才能更能在那忙碌的环境中节省时间。相信我，在集成测试中fix bug的成本要比在单元测试Fix bug的成本大得多的多。一个简单的例子就是memory leak。程序员对自己的程序需要有忧患意识，这样才会越来越成熟，而自己的能力也会越来越强。 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：老大</title>
		<link>http://coolshell.cn/articles/1719.html/comment-page-1#comment-4964</link>
		<dc:creator>老大</dc:creator>
		<pubDate>Mon, 08 Feb 2010 13:29:34 +0000</pubDate>
		<guid isPermaLink="false">http://coolshell.cn/?p=1719#comment-4964</guid>
		<description>老大，不好意思 之前转过两三篇文章 都注明了来自coolshell  但是忘记了加链接，以后都加上不好意思了</description>
		<content:encoded><![CDATA[<p>老大，不好意思 之前转过两三篇文章 都注明了来自coolshell  但是忘记了加链接，以后都加上不好意思了</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：laihj</title>
		<link>http://coolshell.cn/articles/1719.html/comment-page-1#comment-2611</link>
		<dc:creator>laihj</dc:creator>
		<pubDate>Tue, 22 Dec 2009 09:00:40 +0000</pubDate>
		<guid isPermaLink="false">http://coolshell.cn/?p=1719#comment-2611</guid>
		<description>搞点中国特色的，可以摆一枚羊坨</description>
		<content:encoded><![CDATA[<p>搞点中国特色的，可以摆一枚羊坨</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：luobo25</title>
		<link>http://coolshell.cn/articles/1719.html/comment-page-1#comment-2055</link>
		<dc:creator>luobo25</dc:creator>
		<pubDate>Mon, 23 Nov 2009 14:21:13 +0000</pubDate>
		<guid isPermaLink="false">http://coolshell.cn/?p=1719#comment-2055</guid>
		<description>很好的博客:)</description>
		<content:encoded><![CDATA[<p>很好的博客:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：Debi</title>
		<link>http://coolshell.cn/articles/1719.html/comment-page-1#comment-2041</link>
		<dc:creator>Debi</dc:creator>
		<pubDate>Mon, 23 Nov 2009 03:29:36 +0000</pubDate>
		<guid isPermaLink="false">http://coolshell.cn/?p=1719#comment-2041</guid>
		<description>不错</description>
		<content:encoded><![CDATA[<p>不错</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：ys_sunshine</title>
		<link>http://coolshell.cn/articles/1719.html/comment-page-1#comment-2029</link>
		<dc:creator>ys_sunshine</dc:creator>
		<pubDate>Sun, 22 Nov 2009 08:34:46 +0000</pubDate>
		<guid isPermaLink="false">http://coolshell.cn/?p=1719#comment-2029</guid>
		<description>很好很强大啊，记住了~~~~~~~</description>
		<content:encoded><![CDATA[<p>很好很强大啊，记住了~~~~~~~</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：ryutlis</title>
		<link>http://coolshell.cn/articles/1719.html/comment-page-1#comment-1961</link>
		<dc:creator>ryutlis</dc:creator>
		<pubDate>Mon, 16 Nov 2009 03:10:11 +0000</pubDate>
		<guid isPermaLink="false">http://coolshell.cn/?p=1719#comment-1961</guid>
		<description>此方法绝了</description>
		<content:encoded><![CDATA[<p>此方法绝了</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：Tin&#8217;s tweets on 2009-11-15 - Tin&#8217;s Blog</title>
		<link>http://coolshell.cn/articles/1719.html/comment-page-1#comment-1941</link>
		<dc:creator>Tin&#8217;s tweets on 2009-11-15 - Tin&#8217;s Blog</dc:creator>
		<pubDate>Sun, 15 Nov 2009 02:53:49 +0000</pubDate>
		<guid isPermaLink="false">http://coolshell.cn/?p=1719#comment-1941</guid>
		<description>[...] @qingfeng: 这橡皮鸭程序调试法还挺有意思 http://coolshell.cn/?p=1719 [...]</description>
		<content:encoded><![CDATA[<p>[...] @qingfeng: 这橡皮鸭程序调试法还挺有意思 <a href="http://coolshell.cn/?p=1719" rel="nofollow">http://coolshell.cn/?p=1719</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：风信子杨</title>
		<link>http://coolshell.cn/articles/1719.html/comment-page-1#comment-1880</link>
		<dc:creator>风信子杨</dc:creator>
		<pubDate>Thu, 12 Nov 2009 08:05:30 +0000</pubDate>
		<guid isPermaLink="false">http://coolshell.cn/?p=1719#comment-1880</guid>
		<description>我觉得这是个不错的方法，今天我遇到一个bug，然后我觉得没什么问题，跟同事解释一番，很快发现错误来了.</description>
		<content:encoded><![CDATA[<p>我觉得这是个不错的方法，今天我遇到一个bug，然后我觉得没什么问题，跟同事解释一番，很快发现错误来了.</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：sexla</title>
		<link>http://coolshell.cn/articles/1719.html/comment-page-1#comment-1843</link>
		<dc:creator>sexla</dc:creator>
		<pubDate>Wed, 11 Nov 2009 09:48:27 +0000</pubDate>
		<guid isPermaLink="false">http://coolshell.cn/?p=1719#comment-1843</guid>
		<description>的确是够鱼虫的啊</description>
		<content:encoded><![CDATA[<p>的确是够鱼虫的啊</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：defmys</title>
		<link>http://coolshell.cn/articles/1719.html/comment-page-1#comment-1832</link>
		<dc:creator>defmys</dc:creator>
		<pubDate>Wed, 11 Nov 2009 01:23:08 +0000</pubDate>
		<guid isPermaLink="false">http://coolshell.cn/?p=1719#comment-1832</guid>
		<description>&quot;自己都没有解释完，就已经找到问题的原因了&quot;，确实经历过几次。
这方法值得尝试，说的很有道理啊</description>
		<content:encoded><![CDATA[<p>“自己都没有解释完，就已经找到问题的原因了”，确实经历过几次。<br />
这方法值得尝试，说的很有道理啊</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：阿拉</title>
		<link>http://coolshell.cn/articles/1719.html/comment-page-1#comment-1831</link>
		<dc:creator>阿拉</dc:creator>
		<pubDate>Wed, 11 Nov 2009 01:03:53 +0000</pubDate>
		<guid isPermaLink="false">http://coolshell.cn/?p=1719#comment-1831</guid>
		<description>很有哲学深意～</description>
		<content:encoded><![CDATA[<p>很有哲学深意～</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：cece84w</title>
		<link>http://coolshell.cn/articles/1719.html/comment-page-1#comment-1830</link>
		<dc:creator>cece84w</dc:creator>
		<pubDate>Wed, 11 Nov 2009 00:28:09 +0000</pubDate>
		<guid isPermaLink="false">http://coolshell.cn/?p=1719#comment-1830</guid>
		<description>很不错</description>
		<content:encoded><![CDATA[<p>很不错</p>
]]></content:encoded>
	</item>
</channel>
</rss>

