<?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: Java Upgrade Hammer</title>
	<atom:link href="http://stuffthathappens.com/blog/2007/12/17/java-upgrade-hammer/feed/" rel="self" type="application/rss+xml" />
	<link>http://stuffthathappens.com/blog/2007/12/17/java-upgrade-hammer/</link>
	<description>Technology and Geek Stuff by Eric Burke</description>
	<lastBuildDate>Tue, 24 Aug 2010 19:55:26 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Golly</title>
		<link>http://stuffthathappens.com/blog/2007/12/17/java-upgrade-hammer/comment-page-1/#comment-3364</link>
		<dc:creator>Golly</dc:creator>
		<pubDate>Thu, 20 Dec 2007 22:01:20 +0000</pubDate>
		<guid isPermaLink="false">http://stuffthathappens.com/blog/2007/12/17/java-upgrade-hammer/#comment-3364</guid>
		<description>@Matt: If you have &quot;Integer i&quot; and &quot;Double b&quot; both &quot;Number n= i&quot; and &quot;Number n= d&quot; works in java. It should be the same with generics. If you&#039;re worried about accidentally stuffing a Double into a List of Integers like you say, then use a List of Integers rather than a List of Numbers.</description>
		<content:encoded><![CDATA[<p>@Matt: If you have &#8220;Integer i&#8221; and &#8220;Double b&#8221; both &#8220;Number n= i&#8221; and &#8220;Number n= d&#8221; works in java. It should be the same with generics. If you&#8217;re worried about accidentally stuffing a Double into a List of Integers like you say, then use a List of Integers rather than a List of Numbers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: praveen</title>
		<link>http://stuffthathappens.com/blog/2007/12/17/java-upgrade-hammer/comment-page-1/#comment-3264</link>
		<dc:creator>praveen</dc:creator>
		<pubDate>Wed, 19 Dec 2007 08:54:14 +0000</pubDate>
		<guid isPermaLink="false">http://stuffthathappens.com/blog/2007/12/17/java-upgrade-hammer/#comment-3264</guid>
		<description>We have moved to Java 5 &amp; no problems &amp; have seen quite improvement in performance. Before generics this code was more readable List/*Integer*/= new ...., now with Generics it can be List, If you don&#039;t like (&amp; want it to be like C#) one don;t use it, After all it&#039;s not mandatory to use generics.

This romour might become true http://www.macrumors.com/2007/12/18/apple-seeds-mac-os-x-10-5-2-and-java-se-6-preview-8-for-leopard/

With Groovy/JRuby I don;t why people are so passionate about introducing closures in JDK7. JDK should be left as it is (as for as language features are concerned)</description>
		<content:encoded><![CDATA[<p>We have moved to Java 5 &amp; no problems &amp; have seen quite improvement in performance. Before generics this code was more readable List/*Integer*/= new &#8230;., now with Generics it can be List, If you don&#8217;t like (&amp; want it to be like C#) one don;t use it, After all it&#8217;s not mandatory to use generics.</p>
<p>This romour might become true <a href="http://www.macrumors.com/2007/12/18/apple-seeds-mac-os-x-10-5-2-and-java-se-6-preview-8-for-leopard/" rel="nofollow">http://www.macrumors.com/2007/12/18/apple-seeds-mac-os-x-10-5-2-and-java-se-6-preview-8-for-leopard/</a></p>
<p>With Groovy/JRuby I don;t why people are so passionate about introducing closures in JDK7. JDK should be left as it is (as for as language features are concerned)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://stuffthathappens.com/blog/2007/12/17/java-upgrade-hammer/comment-page-1/#comment-3242</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Tue, 18 Dec 2007 22:44:42 +0000</pubDate>
		<guid isPermaLink="false">http://stuffthathappens.com/blog/2007/12/17/java-upgrade-hammer/#comment-3242</guid>
		<description>@Golly: Well, there&#039;s pitfalls if you say that List(Integer) is a subtype of List(Number), what with all that fancy &quot;Liskov substitution principle&quot; stuff. Personally, I&#039;d like my compiler to prevent me from accidentally stuffing a Double into a List of Integers rather than have it die at runtime.</description>
		<content:encoded><![CDATA[<p>@Golly: Well, there&#8217;s pitfalls if you say that List(Integer) is a subtype of List(Number), what with all that fancy &#8220;Liskov substitution principle&#8221; stuff. Personally, I&#8217;d like my compiler to prevent me from accidentally stuffing a Double into a List of Integers rather than have it die at runtime.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Golly</title>
		<link>http://stuffthathappens.com/blog/2007/12/17/java-upgrade-hammer/comment-page-1/#comment-3240</link>
		<dc:creator>Golly</dc:creator>
		<pubDate>Tue, 18 Dec 2007 22:09:11 +0000</pubDate>
		<guid isPermaLink="false">http://stuffthathappens.com/blog/2007/12/17/java-upgrade-hammer/#comment-3240</guid>
		<description>Oops, greater than/less than symbols didnt work.
&quot;List is not a List&quot; --&gt; &quot;List(Integer) is not a List(Number)&quot;</description>
		<content:encoded><![CDATA[<p>Oops, greater than/less than symbols didnt work.<br />
&#8220;List is not a List&#8221; &#8211;&gt; &#8220;List(Integer) is not a List(Number)&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Golly</title>
		<link>http://stuffthathappens.com/blog/2007/12/17/java-upgrade-hammer/comment-page-1/#comment-3238</link>
		<dc:creator>Golly</dc:creator>
		<pubDate>Tue, 18 Dec 2007 22:06:53 +0000</pubDate>
		<guid isPermaLink="false">http://stuffthathappens.com/blog/2007/12/17/java-upgrade-hammer/#comment-3238</guid>
		<description>Java&#039;s generics implementation is absolutely retarded. It completely breaks polymorphism (eg List is not a List). I&#039;d still rather have it than not though.

Closures would be an excellent addition. Why do java people hate change to java so much? Java needs a LOT of change imo. There are lots of small things you could add to the syntax without breaking anything, and still maintaining all of java&#039;s design goals that would greatly simplify the amount of code we write each day, the readability and also allow us to focus more on the actual business logic.</description>
		<content:encoded><![CDATA[<p>Java&#8217;s generics implementation is absolutely retarded. It completely breaks polymorphism (eg List is not a List). I&#8217;d still rather have it than not though.</p>
<p>Closures would be an excellent addition. Why do java people hate change to java so much? Java needs a LOT of change imo. There are lots of small things you could add to the syntax without breaking anything, and still maintaining all of java&#8217;s design goals that would greatly simplify the amount of code we write each day, the readability and also allow us to focus more on the actual business logic.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://stuffthathappens.com/blog/2007/12/17/java-upgrade-hammer/comment-page-1/#comment-3236</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Tue, 18 Dec 2007 21:12:40 +0000</pubDate>
		<guid isPermaLink="false">http://stuffthathappens.com/blog/2007/12/17/java-upgrade-hammer/#comment-3236</guid>
		<description>Is the new goatee guy Mr. Easter? If so, then I feel sorry for Mike...that&#039;s a big hammer.  ;)</description>
		<content:encoded><![CDATA[<p>Is the new goatee guy Mr. Easter? If so, then I feel sorry for Mike&#8230;that&#8217;s a big hammer.  <img src='http://stuffthathappens.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Neil Weber</title>
		<link>http://stuffthathappens.com/blog/2007/12/17/java-upgrade-hammer/comment-page-1/#comment-3235</link>
		<dc:creator>Neil Weber</dc:creator>
		<pubDate>Tue, 18 Dec 2007 21:12:24 +0000</pubDate>
		<guid isPermaLink="false">http://stuffthathappens.com/blog/2007/12/17/java-upgrade-hammer/#comment-3235</guid>
		<description>Having upgraded to Java 5 and then to Java 6 and encountering no problems, I don&#039;t get it.</description>
		<content:encoded><![CDATA[<p>Having upgraded to Java 5 and then to Java 6 and encountering no problems, I don&#8217;t get it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jorge Diaz Tambley</title>
		<link>http://stuffthathappens.com/blog/2007/12/17/java-upgrade-hammer/comment-page-1/#comment-3231</link>
		<dc:creator>Jorge Diaz Tambley</dc:creator>
		<pubDate>Tue, 18 Dec 2007 18:31:55 +0000</pubDate>
		<guid isPermaLink="false">http://stuffthathappens.com/blog/2007/12/17/java-upgrade-hammer/#comment-3231</guid>
		<description>This picture is worth a million words</description>
		<content:encoded><![CDATA[<p>This picture is worth a million words</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Smitty</title>
		<link>http://stuffthathappens.com/blog/2007/12/17/java-upgrade-hammer/comment-page-1/#comment-3220</link>
		<dc:creator>Smitty</dc:creator>
		<pubDate>Tue, 18 Dec 2007 17:11:30 +0000</pubDate>
		<guid isPermaLink="false">http://stuffthathappens.com/blog/2007/12/17/java-upgrade-hammer/#comment-3220</guid>
		<description>Geez, could you be a little less accurate :-).  It burns, it burns....  

We&#039;re currently in a holding pattern with JDK 1.4.2 using WebSphere 6.0.  Nobody in our organization wants to touch WebSphere 6.1 and JDK 1.5.  Of course, eventually we&#039;ll have to bite the bullet and move forward.  I&#039;ll be keeping one eye open for the big o&#039;l hammer....</description>
		<content:encoded><![CDATA[<p>Geez, could you be a little less accurate <img src='http://stuffthathappens.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> .  It burns, it burns&#8230;.  </p>
<p>We&#8217;re currently in a holding pattern with JDK 1.4.2 using WebSphere 6.0.  Nobody in our organization wants to touch WebSphere 6.1 and JDK 1.5.  Of course, eventually we&#8217;ll have to bite the bullet and move forward.  I&#8217;ll be keeping one eye open for the big o&#8217;l hammer&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex Miler</title>
		<link>http://stuffthathappens.com/blog/2007/12/17/java-upgrade-hammer/comment-page-1/#comment-3212</link>
		<dc:creator>Alex Miler</dc:creator>
		<pubDate>Tue, 18 Dec 2007 12:55:49 +0000</pubDate>
		<guid isPermaLink="false">http://stuffthathappens.com/blog/2007/12/17/java-upgrade-hammer/#comment-3212</guid>
		<description>rotfl...great stuff</description>
		<content:encoded><![CDATA[<p>rotfl&#8230;great stuff</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.259 seconds -->
