<?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: More Stupid Java Tricks</title>
	<atom:link href="http://blog.uncommons.org/2008/08/26/more-stupid-java-tricks/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.uncommons.org/2008/08/26/more-stupid-java-tricks/</link>
	<description>Rants and opinion interspersed with awe-inspiring tales of heoric software engineering endeavours.</description>
	<pubDate>Tue, 06 Jan 2009 21:36:21 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: peter lawrey</title>
		<link>http://blog.uncommons.org/2008/08/26/more-stupid-java-tricks/comment-page-1/#comment-2772</link>
		<dc:creator>peter lawrey</dc:creator>
		<pubDate>Wed, 27 Aug 2008 19:38:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.uncommons.org/?p=142#comment-2772</guid>
		<description>You can write a program which empirically determine how many values are cached. BTW: Byte, Short, Integer and Long are all -128 to 127 but for Character its 0 to 127.
From Nov '06. :)
http://weblog.jtoolkit.org/blog/_archives/2006/11/18/2508799.html

For some tricks and trival on Java you can try
http://www.freshvanilla.org:8080/display/www/Java+Interview+Questions</description>
		<content:encoded><![CDATA[<p>You can write a program which empirically determine how many values are cached. BTW: Byte, Short, Integer and Long are all -128 to 127 but for Character its 0 to 127.<br />
From Nov &#8216;06. <img src='http://blog.uncommons.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<a href="http://weblog.jtoolkit.org/blog/_archives/2006/11/18/2508799.html" rel="nofollow">http://weblog.jtoolkit.org/blog/_archives/2006/11/18/2508799.html</a></p>
<p>For some tricks and trival on Java you can try<br />
<a href="http://www.freshvanilla.org:8080/display/www/Java+Interview+Questions" rel="nofollow">http://www.freshvanilla.org:8080/display/www/Java+Interview+Questions</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christiano Milfont</title>
		<link>http://blog.uncommons.org/2008/08/26/more-stupid-java-tricks/comment-page-1/#comment-2771</link>
		<dc:creator>Christiano Milfont</dc:creator>
		<pubDate>Wed, 27 Aug 2008 17:55:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.uncommons.org/?p=142#comment-2771</guid>
		<description>I writing code like this:

User u = new User() {
			
			private String login = "teste2";
			
			@Override
			public String createHashValidate() {
				this.setLogin(login);
				return super.createHashValidate(); 
			}
		};
		
		System.out.println(u.createHashValidate());</description>
		<content:encoded><![CDATA[<p>I writing code like this:</p>
<p>User u = new User() {</p>
<p>			private String login = &#8220;teste2&#8243;;</p>
<p>			@Override<br />
			public String createHashValidate() {<br />
				this.setLogin(login);<br />
				return super.createHashValidate();<br />
			}<br />
		};</p>
<p>		System.out.println(u.createHashValidate());</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stupid Java Tricks &#124; Le blog de David Loureiro</title>
		<link>http://blog.uncommons.org/2008/08/26/more-stupid-java-tricks/comment-page-1/#comment-2767</link>
		<dc:creator>Stupid Java Tricks &#124; Le blog de David Loureiro</dc:creator>
		<pubDate>Wed, 27 Aug 2008 12:02:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.uncommons.org/?p=142#comment-2767</guid>
		<description>[...] More Stupid Java Tricks [...]</description>
		<content:encoded><![CDATA[<p>[...] More Stupid Java Tricks [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Caligula</title>
		<link>http://blog.uncommons.org/2008/08/26/more-stupid-java-tricks/comment-page-1/#comment-2764</link>
		<dc:creator>Caligula</dc:creator>
		<pubDate>Wed, 27 Aug 2008 11:08:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.uncommons.org/?p=142#comment-2764</guid>
		<description>Personally I'm still a fan of this:


List foo = new ArrayList() {{
    add("old");
    add("trick");
}};
</description>
		<content:encoded><![CDATA[<p>Personally I&#8217;m still a fan of this:</p>
<p>List foo = new ArrayList() {{<br />
    add(&#8221;old&#8221;);<br />
    add(&#8221;trick&#8221;);<br />
}};</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stas Ostapenko</title>
		<link>http://blog.uncommons.org/2008/08/26/more-stupid-java-tricks/comment-page-1/#comment-2762</link>
		<dc:creator>Stas Ostapenko</dc:creator>
		<pubDate>Wed, 27 Aug 2008 09:11:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.uncommons.org/?p=142#comment-2762</guid>
		<description>Autoboxing is fun ! :) See here : http://ostas.blogspot.com/2007/05/werid-integer.html</description>
		<content:encoded><![CDATA[<p>Autoboxing is fun ! <img src='http://blog.uncommons.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> See here : <a href="http://ostas.blogspot.com/2007/05/werid-integer.html" rel="nofollow">http://ostas.blogspot.com/2007/05/werid-integer.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sharfah</title>
		<link>http://blog.uncommons.org/2008/08/26/more-stupid-java-tricks/comment-page-1/#comment-2729</link>
		<dc:creator>sharfah</dc:creator>
		<pubDate>Tue, 26 Aug 2008 21:58:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.uncommons.org/?p=142#comment-2729</guid>
		<description>Good post! I love puzzlers; might buy the book.

Here is an example of a program written in unicode to illustrate your point above:

http://fahdshariff.blogspot.com/2006/12/java-program-in-unicode.html</description>
		<content:encoded><![CDATA[<p>Good post! I love puzzlers; might buy the book.</p>
<p>Here is an example of a program written in unicode to illustrate your point above:</p>
<p><a href="http://fahdshariff.blogspot.com/2006/12/java-program-in-unicode.html" rel="nofollow">http://fahdshariff.blogspot.com/2006/12/java-program-in-unicode.html</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

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