<?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://c.gzl.name/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://c.gzl.name</link>
	<description>IPhone, Cocoa, PHP, Javascript, JQuery, Actionscript, etc...</description>
	<lastBuildDate>Wed, 07 Dec 2011 20:58:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>admin 关于 NSString的内存管理 v.2011/12 的评论</title>
		<link>http://c.gzl.name/archives/606/comment-page-1#comment-9245</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 07 Dec 2011 20:58:30 +0000</pubDate>
		<guid isPermaLink="false">http://c.gzl.name/?p=606#comment-9245</guid>
		<description>你不睡啊？还是你也在国外啊？</description>
		<content:encoded><![CDATA[<p>你不睡啊？还是你也在国外啊？</p>
]]></content:encoded>
	</item>
	<item>
		<title>cocoa 关于 NSString的内存管理 v.2011/12 的评论</title>
		<link>http://c.gzl.name/archives/606/comment-page-1#comment-9244</link>
		<dc:creator>cocoa</dc:creator>
		<pubDate>Wed, 07 Dec 2011 20:45:38 +0000</pubDate>
		<guid isPermaLink="false">http://c.gzl.name/?p=606#comment-9244</guid>
		<description>对，一般都不会，retain一般发生在autorelease对象 像stringWithXXX或者 arrayWithXXX
或者运用在移出数组、字典前
或者必要的时候</description>
		<content:encoded><![CDATA[<p>对，一般都不会，retain一般发生在autorelease对象 像stringWithXXX或者 arrayWithXXX<br />
或者运用在移出数组、字典前<br />
或者必要的时候</p>
]]></content:encoded>
	</item>
	<item>
		<title>admin 关于 NSString的内存管理 v.2011/12 的评论</title>
		<link>http://c.gzl.name/archives/606/comment-page-1#comment-9243</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 07 Dec 2011 20:28:13 +0000</pubDate>
		<guid isPermaLink="false">http://c.gzl.name/?p=606#comment-9243</guid>
		<description>感谢您的补充，不过第一句是不是有歧义，alloc后，除非有特殊必要不用再次retain了~</description>
		<content:encoded><![CDATA[<p>感谢您的补充，不过第一句是不是有歧义，alloc后，除非有特殊必要不用再次retain了~</p>
]]></content:encoded>
	</item>
	<item>
		<title>cocoa 关于 NSString的内存管理 v.2011/12 的评论</title>
		<link>http://c.gzl.name/archives/606/comment-page-1#comment-9237</link>
		<dc:creator>cocoa</dc:creator>
		<pubDate>Wed, 07 Dec 2011 16:57:40 +0000</pubDate>
		<guid isPermaLink="false">http://c.gzl.name/?p=606#comment-9237</guid>
		<description>使用alloc创建的对象才需要release，同时使用retain加强引用，和使用copy深拷贝都是需要release的

当然如果使用了[[nsobject alloc]autorelease]也是不需要release的

同时如果对象存储到数组或者字典中,那么对象其实也是被retain过的, 从而防止指针引用的对象被回收, 当它从数组中被移除时, 如果之前没有alloc/retain/copy的话会被立即释放</description>
		<content:encoded><![CDATA[<p>使用alloc创建的对象才需要release，同时使用retain加强引用，和使用copy深拷贝都是需要release的</p>
<p>当然如果使用了[[nsobject alloc]autorelease]也是不需要release的</p>
<p>同时如果对象存储到数组或者字典中,那么对象其实也是被retain过的, 从而防止指针引用的对象被回收, 当它从数组中被移除时, 如果之前没有alloc/retain/copy的话会被立即释放</p>
]]></content:encoded>
	</item>
	<item>
		<title>“我”的开发笔记 &#187; Blog Archive &#187; NSString的内存管理 v.2011/12 关于 NSString的内存管理 的评论</title>
		<link>http://c.gzl.name/archives/81/comment-page-1#comment-9149</link>
		<dc:creator>“我”的开发笔记 &#187; Blog Archive &#187; NSString的内存管理 v.2011/12</dc:creator>
		<pubDate>Mon, 05 Dec 2011 08:31:08 +0000</pubDate>
		<guid isPermaLink="false">http://c.gzl.name/?p=81#comment-9149</guid>
		<description>[...] 之前写过一个NSString的内存管理 [...]</description>
		<content:encoded><![CDATA[<p>[...] 之前写过一个NSString的内存管理 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>admin 关于 NSString的内存管理 的评论</title>
		<link>http://c.gzl.name/archives/81/comment-page-1#comment-9147</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Mon, 05 Dec 2011 08:22:42 +0000</pubDate>
		<guid isPermaLink="false">http://c.gzl.name/?p=81#comment-9147</guid>
		<description>是的，我的意思是，第一种产生的其实是常量，我们是不用去，而且没有意义去retain和release的

而第二种的才有意义去进行retain和release，我并不是说这种便捷方法需要去release，呵呵，谢谢</description>
		<content:encoded><![CDATA[<p>是的，我的意思是，第一种产生的其实是常量，我们是不用去，而且没有意义去retain和release的</p>
<p>而第二种的才有意义去进行retain和release，我并不是说这种便捷方法需要去release，呵呵，谢谢</p>
]]></content:encoded>
	</item>
	<item>
		<title>CalvinLaw 关于 NSString的内存管理 的评论</title>
		<link>http://c.gzl.name/archives/81/comment-page-1#comment-8607</link>
		<dc:creator>CalvinLaw</dc:creator>
		<pubDate>Thu, 17 Nov 2011 14:18:16 +0000</pubDate>
		<guid isPermaLink="false">http://c.gzl.name/?p=81#comment-8607</guid>
		<description>stringWithFormat:是autorelease的吧？不用我们管吧</description>
		<content:encoded><![CDATA[<p>stringWithFormat:是autorelease的吧？不用我们管吧</p>
]]></content:encoded>
	</item>
	<item>
		<title>liuzhoou 关于 Android版《我的佛典》发布 的评论</title>
		<link>http://c.gzl.name/archives/595/comment-page-1#comment-8368</link>
		<dc:creator>liuzhoou</dc:creator>
		<pubDate>Thu, 10 Nov 2011 15:16:00 +0000</pubDate>
		<guid isPermaLink="false">http://c.gzl.name/?p=595#comment-8368</guid>
		<description>朴实的图标，原味的经文
太棒了，能做自己喜欢的事情当然是最开心的...</description>
		<content:encoded><![CDATA[<p>朴实的图标，原味的经文<br />
太棒了，能做自己喜欢的事情当然是最开心的&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>李林 关于 答问留言：关于NSOperation 的评论</title>
		<link>http://c.gzl.name/archives/444/comment-page-1#comment-7422</link>
		<dc:creator>李林</dc:creator>
		<pubDate>Thu, 29 Sep 2011 02:59:53 +0000</pubDate>
		<guid isPermaLink="false">http://c.gzl.name/?p=444#comment-7422</guid>
		<description>谢谢，受用，今天看到，是不是有问题可以发邮件请你指教</description>
		<content:encoded><![CDATA[<p>谢谢，受用，今天看到，是不是有问题可以发邮件请你指教</p>
]]></content:encoded>
	</item>
	<item>
		<title>魏鹏 关于 TTView的简单使用 的评论</title>
		<link>http://c.gzl.name/archives/305/comment-page-1#comment-3523</link>
		<dc:creator>魏鹏</dc:creator>
		<pubDate>Mon, 28 Mar 2011 09:58:43 +0000</pubDate>
		<guid isPermaLink="false">http://c.gzl.name/?p=305#comment-3523</guid>
		<description>你好，能留你个联系方式吗？我很喜欢你的blog 。。。</description>
		<content:encoded><![CDATA[<p>你好，能留你个联系方式吗？我很喜欢你的blog 。。。</p>
]]></content:encoded>
	</item>
</channel>
</rss>

