<?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 for 程序员实验室</title>
	<atom:link href="http://www.prglab.com/blog/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.prglab.com/blog</link>
	<description>多读书，读好书</description>
	<lastBuildDate>Sat, 24 Dec 2011 06:41:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
	<item>
		<title>Comment on 在JavaScript中生成自定义的对象 by xiaorui</title>
		<link>http://www.prglab.com/blog/js-tutorial/js-createobjs/comment-page-1#comment-3522</link>
		<dc:creator>xiaorui</dc:creator>
		<pubDate>Sat, 24 Dec 2011 06:41:33 +0000</pubDate>
		<guid isPermaLink="false">http://prglab.com/blog/js-tutorial/js-createobjs#comment-3522</guid>
		<description>用了一天的时间看完了。一直对js有抵触感，看完以后发现也很简单。让抵触感有点消退了。多谢站长。</description>
		<content:encoded><![CDATA[<p>用了一天的时间看完了。一直对js有抵触感，看完以后发现也很简单。让抵触感有点消退了。多谢站长。</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JavaScript简介 by 冰点博客</title>
		<link>http://www.prglab.com/blog/js-tutorial/js-intro/comment-page-1#comment-3426</link>
		<dc:creator>冰点博客</dc:creator>
		<pubDate>Thu, 20 Oct 2011 03:42:27 +0000</pubDate>
		<guid isPermaLink="false">http://prglab.com/blog/?page_id=4#comment-3426</guid>
		<description>正在研究javascript</description>
		<content:encoded><![CDATA[<p>正在研究javascript</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C++中Reference与指针（Pointer）的使用对比 by Anonymous</title>
		<link>http://www.prglab.com/blog/p/28/comment-page-1#comment-3410</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Sun, 02 Oct 2011 15:45:37 +0000</pubDate>
		<guid isPermaLink="false">http://prglab.com/blog/p/28#comment-3410</guid>
		<description>本网站C++ 基础教程 3.3中： 

地址或反引用操作符Operator of address or dereference (&amp;)
它被用作一个变量前缀，可以被翻译为“…的地址”(&quot;address of&quot;)，因此：&amp;variable1 可以被读作 variable1的地址(&quot;address of variable1&quot; )。
引用操作符Operator of reference (*)
它表示要取的是表达式所表示的地址指向的内容。它可以被翻译为“…指向的数值” (&quot;value pointed by&quot;)。

到底哪个才是reference？？</description>
		<content:encoded><![CDATA[<p>本网站C++ 基础教程 3.3中： </p>
<p>地址或反引用操作符Operator of address or dereference (&amp;)<br />
它被用作一个变量前缀，可以被翻译为“…的地址”(&#8220;address of&#8221;)，因此：&amp;variable1 可以被读作 variable1的地址(&#8220;address of variable1&#8243; )。<br />
引用操作符Operator of reference (*)<br />
它表示要取的是表达式所表示的地址指向的内容。它可以被翻译为“…指向的数值” (&#8220;value pointed by&#8221;)。</p>
<p>到底哪个才是reference？？</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JavaScript 中的If&#8230;Else 语句 by yuwuji</title>
		<link>http://www.prglab.com/blog/js-tutorial/js-ifelse/comment-page-1#comment-3407</link>
		<dc:creator>yuwuji</dc:creator>
		<pubDate>Sat, 01 Oct 2011 13:42:50 +0000</pubDate>
		<guid isPermaLink="false">http://prglab.com/blog/?page_id=11#comment-3407</guid>
		<description>例1的if前面少了;</description>
		<content:encoded><![CDATA[<p>例1的if前面少了;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JavaScript 对象简介 by Aqua</title>
		<link>http://www.prglab.com/blog/js-tutorial/js-oointro/comment-page-1#comment-3185</link>
		<dc:creator>Aqua</dc:creator>
		<pubDate>Mon, 04 Jul 2011 14:21:03 +0000</pubDate>
		<guid isPermaLink="false">http://prglab.com/blog/?page_id=25#comment-3185</guid>
		<description>这个区别还挺细的，我要去搜搜，有结果来报告。</description>
		<content:encoded><![CDATA[<p>这个区别还挺细的，我要去搜搜，有结果来报告。</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JavaScript 循环的Break 和 Continue by anyone</title>
		<link>http://www.prglab.com/blog/js-tutorial/js-loopbreak/comment-page-1#comment-3178</link>
		<dc:creator>anyone</dc:creator>
		<pubDate>Fri, 01 Jul 2011 17:55:49 +0000</pubDate>
		<guid isPermaLink="false">http://prglab.com/blog/?page_id=17#comment-3178</guid>
		<description>回复新手：

你的程序顺序搞错了。i=3的时候，你已经先写了document.write，然后跳出本次循环就没有意义了。应该如下这样：

	var i=-5
	do {
		i = i+1;
		if(i==3){continue}
		document.write(&quot;The number is&quot; + i);
		document.write(&quot;&quot;)
	}
	while (i&lt;=10)</description>
		<content:encoded><![CDATA[<p>回复新手：</p>
<p>你的程序顺序搞错了。i=3的时候，你已经先写了document.write，然后跳出本次循环就没有意义了。应该如下这样：</p>
<p>	var i=-5<br />
	do {<br />
		i = i+1;<br />
		if(i==3){continue}<br />
		document.write(&#8220;The number is&#8221; + i);<br />
		document.write(&#8220;&#8221;)<br />
	}<br />
	while (i&lt;=10)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JavaScript 对象简介 by snoopy</title>
		<link>http://www.prglab.com/blog/js-tutorial/js-oointro/comment-page-1#comment-3176</link>
		<dc:creator>snoopy</dc:creator>
		<pubDate>Thu, 30 Jun 2011 12:54:48 +0000</pubDate>
		<guid isPermaLink="false">http://prglab.com/blog/?page_id=25#comment-3176</guid>
		<description>liulangren:
JavaScript是基于对象的驱动语言，不是面向对象的
20 October 2008, 12:13 am 

他的意思应该是JS只做到了对象的封装,但没有实现继承和多态? 初学网络程序 不了解JS 但如果是按照一般的OOP概念来说 obj-based和obj-oriented大概就继承和多态的区别吧</description>
		<content:encoded><![CDATA[<p>liulangren:<br />
JavaScript是基于对象的驱动语言，不是面向对象的<br />
20 October 2008, 12:13 am </p>
<p>他的意思应该是JS只做到了对象的封装,但没有实现继承和多态? 初学网络程序 不了解JS 但如果是按照一般的OOP概念来说 obj-based和obj-oriented大概就继承和多态的区别吧</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 怎样使用JavaScript by Mr.Cong</title>
		<link>http://www.prglab.com/blog/js-tutorial/js-howtouse/comment-page-1#comment-3167</link>
		<dc:creator>Mr.Cong</dc:creator>
		<pubDate>Mon, 27 Jun 2011 11:09:00 +0000</pubDate>
		<guid isPermaLink="false">http://prglab.com/blog/?page_id=8#comment-3167</guid>
		<description>呵呵，我来回复一下楼上的朋友的疑问吧！由于这个程序员实验室网站使用的是wordpress博客系统，而wordpress博客系统默认是会将代码里的英文引号（包括单、双引号），转换为中文的引号，所以直接复制的朋友复制来执行是看不到效果的。还有一点就是，没有添加结束符“;”，当然，这个再只有一行代码时不加也无所谓。</description>
		<content:encoded><![CDATA[<p>呵呵，我来回复一下楼上的朋友的疑问吧！由于这个程序员实验室网站使用的是wordpress博客系统，而wordpress博客系统默认是会将代码里的英文引号（包括单、双引号），转换为中文的引号，所以直接复制的朋友复制来执行是看不到效果的。还有一点就是，没有添加结束符“;”，当然，这个再只有一行代码时不加也无所谓。</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JavaScript 动画效果 by Agas</title>
		<link>http://www.prglab.com/blog/js-tutorial/js-animation/comment-page-1#comment-3165</link>
		<dc:creator>Agas</dc:creator>
		<pubDate>Mon, 27 Jun 2011 01:57:35 +0000</pubDate>
		<guid isPermaLink="false">http://prglab.com/blog/js-tutorial/js-animation#comment-3165</guid>
		<description>document.b1.src 这个b1是什么呢？</description>
		<content:encoded><![CDATA[<p>document.b1.src 这个b1是什么呢？</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JavaScript 循环的Break 和 Continue by zz</title>
		<link>http://www.prglab.com/blog/js-tutorial/js-loopbreak/comment-page-1#comment-3121</link>
		<dc:creator>zz</dc:creator>
		<pubDate>Fri, 17 Jun 2011 10:33:31 +0000</pubDate>
		<guid isPermaLink="false">http://prglab.com/blog/?page_id=17#comment-3121</guid>
		<description>你上面写错了一个地方，应该是i++,不是i+1</description>
		<content:encoded><![CDATA[<p>你上面写错了一个地方，应该是i++,不是i+1</p>
]]></content:encoded>
	</item>
</channel>
</rss>

