<?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 on: Dump the GC</title>
	<atom:link href="http://blog.vectec.net/2008/03/27/dump-the-gc/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.vectec.net/2008/03/27/dump-the-gc/</link>
	<description>A Chronological Account</description>
	<lastBuildDate>Tue, 03 Aug 2010 18:50:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: QBasicer</title>
		<link>http://blog.vectec.net/2008/03/27/dump-the-gc/comment-page-1/#comment-37200</link>
		<dc:creator>QBasicer</dc:creator>
		<pubDate>Tue, 01 Apr 2008 02:32:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vectec.net/2008/03/27/dump-the-gc/#comment-37200</guid>
		<description>There actually is no &quot;free()&quot;, when the Java VM detects that nobody can get it, then it collects it, but other than that, you can&#039;t get it.  Say you say:
InputStream is = new InputStream();
//Object now exists
is = new InputStream();
//The old object now gets deleted
is = null;
//The second object gets deleted</description>
		<content:encoded><![CDATA[<p>There actually is no &#8220;free()&#8221;, when the Java VM detects that nobody can get it, then it collects it, but other than that, you can&#8217;t get it.  Say you say:<br />
InputStream is = new InputStream();<br />
//Object now exists<br />
is = new InputStream();<br />
//The old object now gets deleted<br />
is = null;<br />
//The second object gets deleted</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BioHazard</title>
		<link>http://blog.vectec.net/2008/03/27/dump-the-gc/comment-page-1/#comment-37199</link>
		<dc:creator>BioHazard</dc:creator>
		<pubDate>Tue, 01 Apr 2008 00:21:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vectec.net/2008/03/27/dump-the-gc/#comment-37199</guid>
		<description>So when you free() something, it doesn&#039;t actually get free()d until x seconds pass?</description>
		<content:encoded><![CDATA[<p>So when you free() something, it doesn&#8217;t actually get free()d until x seconds pass?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: QBasicer</title>
		<link>http://blog.vectec.net/2008/03/27/dump-the-gc/comment-page-1/#comment-37198</link>
		<dc:creator>QBasicer</dc:creator>
		<pubDate>Sat, 29 Mar 2008 20:20:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vectec.net/2008/03/27/dump-the-gc/#comment-37198</guid>
		<description>Yes, after a certain amount of time, it checks to see if an object is accessible by anyone, so that if nobody can ever access the object again, it removes it.  By just keeping a pointer, you prevent the address from being freed.</description>
		<content:encoded><![CDATA[<p>Yes, after a certain amount of time, it checks to see if an object is accessible by anyone, so that if nobody can ever access the object again, it removes it.  By just keeping a pointer, you prevent the address from being freed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BioHazard</title>
		<link>http://blog.vectec.net/2008/03/27/dump-the-gc/comment-page-1/#comment-37191</link>
		<dc:creator>BioHazard</dc:creator>
		<pubDate>Fri, 28 Mar 2008 15:10:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vectec.net/2008/03/27/dump-the-gc/#comment-37191</guid>
		<description>Woah, woah! You mean Java will automatically delete your data if it thinks you are done with it? Good Lord Java sucks even more than I already thought!

I&#039;ll decide when I want to delete something, thanks.</description>
		<content:encoded><![CDATA[<p>Woah, woah! You mean Java will automatically delete your data if it thinks you are done with it? Good Lord Java sucks even more than I already thought!</p>
<p>I&#8217;ll decide when I want to delete something, thanks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
