<?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>《牛逼闪闪的Ruby迭代器》的评论</title>
	<atom:link href="https://wordpress.diguage.com/archives/86.html/feed" rel="self" type="application/rss+xml" />
	<link>https://wordpress.diguage.com/archives/86.html</link>
	<description>分享技术带来的喜悦—https://www.diguage.com/</description>
	<lastBuildDate>Thu, 11 Jun 2020 02:02:48 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
	<item>
		<title>作者：D瓜哥</title>
		<link>https://wordpress.diguage.com/archives/86.html#comment-10059</link>
		<dc:creator>D瓜哥</dc:creator>
		<pubDate>Wed, 28 Aug 2013 06:32:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.diguage.com/?p=86#comment-10059</guid>
		<description>谢谢！这本书我看了大概两遍了，有些章节写的非常好，让我感觉醍醐灌顶！哈哈</description>
		<content:encoded><![CDATA[<p>谢谢！这本书我看了大概两遍了，有些章节写的非常好，让我感觉醍醐灌顶！哈哈</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：ani di</title>
		<link>https://wordpress.diguage.com/archives/86.html#comment-10058</link>
		<dc:creator>ani di</dc:creator>
		<pubDate>Wed, 28 Aug 2013 06:24:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.diguage.com/?p=86#comment-10058</guid>
		<description>python也因迭代器/生成器而闻名，不过ruby的更丰富。
推荐看看ruby作者写的《松本行宏的程序世界》</description>
		<content:encoded><![CDATA[<p>python也因迭代器/生成器而闻名，不过ruby的更丰富。<br />
推荐看看ruby作者写的《松本行宏的程序世界》</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：bachue</title>
		<link>https://wordpress.diguage.com/archives/86.html#comment-1012</link>
		<dc:creator>bachue</dc:creator>
		<pubDate>Tue, 12 Mar 2013 03:47:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.diguage.com/?p=86#comment-1012</guid>
		<description>233 但其实Ruby的迭代器和Java迭代器是两种不同的迭代方法，这个在GOF中是有描述的。Java允许用户直接操控迭代器对象本身，遍历操作对用户可见，仅仅屏蔽了内部实现，用户可以自由遍历。而Ruby更多的是方便，连遍历的操作都是屏蔽的，用户只要关心的元素的操作即可。但一旦我要求比较特殊的遍历方法或是顺序的时候，这种方法就有局限性了。</description>
		<content:encoded><![CDATA[<p>233 但其实Ruby的迭代器和Java迭代器是两种不同的迭代方法，这个在GOF中是有描述的。Java允许用户直接操控迭代器对象本身，遍历操作对用户可见，仅仅屏蔽了内部实现，用户可以自由遍历。而Ruby更多的是方便，连遍历的操作都是屏蔽的，用户只要关心的元素的操作即可。但一旦我要求比较特殊的遍历方法或是顺序的时候，这种方法就有局限性了。</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：akasuna</title>
		<link>https://wordpress.diguage.com/archives/86.html#comment-985</link>
		<dc:creator>akasuna</dc:creator>
		<pubDate>Mon, 11 Mar 2013 05:22:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.diguage.com/?p=86#comment-985</guid>
		<description>正因为有这个迭代器，ruby 里面才很少用到 for、while 之类的循环</description>
		<content:encoded><![CDATA[<p>正因为有这个迭代器，ruby 里面才很少用到 for、while 之类的循环</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：《Agile Web Development with Rails》抄书笔记(01)：环境搭建 &#124; &#34;地瓜哥&#34;博客网</title>
		<link>https://wordpress.diguage.com/archives/86.html#comment-890</link>
		<dc:creator>《Agile Web Development with Rails》抄书笔记(01)：环境搭建 &#124; &#34;地瓜哥&#34;博客网</dc:creator>
		<pubDate>Thu, 07 Mar 2013 02:53:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.diguage.com/?p=86#comment-890</guid>
		<description>[...] 　　很早之前就对Python、Ruby等动态语言很感兴趣。因为一直在犹豫应该学习Python，还是该学Ruby（传说中的Ruby on Rails太牛逼闪闪了，可以先看看“牛逼闪闪的Ruby迭代器”体验一下Ruby的牛逼之处）。在我犹豫出门改迈左脚还是该迈右脚的时候，时间已经悄悄过去了好几年。最近，由于想做一个网站（抱歉，还没开始编码），在陈皓（微博）大哥的指点下，不再犹豫，开始学习Ruby。由于D瓜哥的目的很简单，就是做个网站，所以直接开始学习Ruby on Rails。在范凯（微博）的博客中，推荐了Ruby on Rails（一下简称Rails）的三本书，《Agile Web Development with Rails》是第一本。然后，D瓜哥就开始了不平凡的抄书过程。 [...]</description>
		<content:encoded><![CDATA[<p>[...] 　　很早之前就对Python、Ruby等动态语言很感兴趣。因为一直在犹豫应该学习Python，还是该学Ruby（传说中的Ruby on Rails太牛逼闪闪了，可以先看看“牛逼闪闪的Ruby迭代器”体验一下Ruby的牛逼之处）。在我犹豫出门改迈左脚还是该迈右脚的时候，时间已经悄悄过去了好几年。最近，由于想做一个网站（抱歉，还没开始编码），在陈皓（微博）大哥的指点下，不再犹豫，开始学习Ruby。由于D瓜哥的目的很简单，就是做个网站，所以直接开始学习Ruby on Rails。在范凯（微博）的博客中，推荐了Ruby on Rails（一下简称Rails）的三本书，《Agile Web Development with Rails》是第一本。然后，D瓜哥就开始了不平凡的抄书过程。 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：Ruby入门教程（一） &#124; &#34;地瓜哥&#34;博客网</title>
		<link>https://wordpress.diguage.com/archives/86.html#comment-582</link>
		<dc:creator>Ruby入门教程（一） &#124; &#34;地瓜哥&#34;博客网</dc:creator>
		<pubDate>Fri, 18 Jan 2013 03:24:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.diguage.com/?p=86#comment-582</guid>
		<description>[...] 　　由于Ruby的迭代器及其强大，在Ruby编程中，利用数组的这些函数再加上迭代器可以写出非常“炫”的代码！ [...]</description>
		<content:encoded><![CDATA[<p>[...] 　　由于Ruby的迭代器及其强大，在Ruby编程中，利用数组的这些函数再加上迭代器可以写出非常“炫”的代码！ [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：付骋</title>
		<link>https://wordpress.diguage.com/archives/86.html#comment-569</link>
		<dc:creator>付骋</dc:creator>
		<pubDate>Thu, 10 Jan 2013 15:00:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.diguage.com/?p=86#comment-569</guid>
		<description>ruby的迭代器确实比较灵活简洁啊。</description>
		<content:encoded><![CDATA[<p>ruby的迭代器确实比较灵活简洁啊。</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: https://www.w3-edge.com/products/

Object Caching 233/273 objects using disk
Page Caching using disk: enhanced (SSL caching disabled)
Database Caching using disk

 Served from: wordpress.diguage.com @ 2026-04-23 22:43:31 by W3 Total Cache -->