Hidden Features of Java - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T18:52:40Zhttp://stackoverflow.com/feeds/question/15496http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/15496/hidden-features-of-java175Hidden Features of Javagrom2008-08-19T01:36:03Z2009-12-16T23:47:36Z
<p>After reading <a href="http://beta.stackoverflow.com/questions/9033/hidden-features-of-c" rel="nofollow">Hidden Features of C#</a> I wondered, What are some of the hidden features of Java?</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/15512#1551222Answer by Mark Cidade for Hidden Features of JavaMark Cidade2008-08-19T01:51:22Z2008-08-19T01:51:22Z<p>Language-level <strong>assert</strong> keyword.</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/15533#155339Answer by Mo for Hidden Features of JavaMo2008-08-19T02:03:53Z2008-08-19T02:03:53Z<p>I really like the rewritten Threading API from Java 1.6. Callables are great. They are basically threads with a return value.</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/15538#1553818Answer by Michael Neale for Hidden Features of JavaMichael Neale2008-08-19T02:06:42Z2008-08-19T02:15:15Z<p>static imports to "enhance" the language, so you can do nice literal things in type safe ways: </p>
<pre><code>List<String> ls = List("a", "b", "c");
</code></pre>
<p>(can also do with maps, arrays, sets). </p>
<p><a href="http://gleichmann.wordpress.com/2008/01/13/building-your-own-literals-in-java-lists-and-arrays/" rel="nofollow">http://gleichmann.wordpress.com/2008/01/13/building-your-own-literals-in-java-lists-and-arrays/</a></p>
<p>Taking it further: </p>
<pre><code>List<Map<String, String>> data = List(Map( o("name", "michael"), o("sex", "male")));
</code></pre>
http://stackoverflow.com/questions/15496/hidden-features-of-java/16528#1652831Answer by Mo for Hidden Features of JavaMo2008-08-19T16:47:35Z2008-08-19T16:47:35Z<p>I think another "overlooked" feature of java is the JVM itself. It is probably the best VM available. And it supports lots of interesting and useful languages (Jython, JRuby, Scala, Groovy). All those languages can easily and seamlessly cooperate.</p>
<p>If you design a new language (like in the scala-case) you immediately have all the existing libraries available and your language is therefore "useful" from the very beginning.</p>
<p>All those languages make use of the HotSpot optimizations. The VM is very well monitor and debuggable. </p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/16838#16838163Answer by Boris Terzic for Hidden Features of JavaBoris Terzic2008-08-19T20:09:17Z2008-08-19T20:09:17Z<p><a href="http://www.c2.com/cgi/wiki?DoubleBraceInitialization" rel="nofollow">Double Brace Initialization</a> took me by surprise a few months ago when I first discovered it, never heard of it before.</p>
<p><a href="http://java.sun.com/javase/6/docs/api/java/lang/ThreadLocal.html" rel="nofollow">ThreadLocals</a> are typically not so widely known as a way to store per-thread state.</p>
<p>Since JDK 1.5 Java has had extremely well implemented and robust concurrency tools beyond just locks, they live in <a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/package-summary.html" rel="nofollow">java.util.concurrent</a> and a specifically interesting example is the <a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/atomic/package-summary.html" rel="nofollow">java.util.concurrent.atomic</a> subpackage that contains thread-safe primitives that implement the <a href="http://www.ibm.com/developerworks/java/library/j-jtp11234/" rel="nofollow">compare-and-swap</a> operation and can map to actual native hardware-supported versions of these operations.</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/17702#1770210Answer by serg10 for Hidden Features of Javaserg102008-08-20T10:07:43Z2008-08-29T21:05:03Z<p>Not really a feature, but it makes me chuckle that <strong><code>goto</code></strong> is a reserved word that does nothing except prompting javac to poke you in the eye. Just to remind you that you are in OO-land now.</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/17769#1776914Answer by pp for Hidden Features of Javapp2008-08-20T11:30:49Z2008-08-20T11:30:49Z<p>As a starter I really appreciate the JConsole monitoring software in Java 6, it has solved a couple of problems for me already and I keep on finding new uses for it.</p>
<p>Apparently the JConsole was there already in Java 5 but I reckon it is improved now and at least working much more stable as of now.</p>
<p>JConsole in Java 5:
<a href="http://java.sun.com/developer/technicalArticles/J2SE/jconsole.html" rel="nofollow" title="Jconsole in Java 5">JConsole in Java 5</a></p>
<p>JConsole in Java 6:
<a href="http://java.sun.com/developer/technicalArticles/J2SE/monitoring/" rel="nofollow" title="JConsole in Java 6">JConsole in Java 6</a></p>
<p>And while you are at it, have a good look at the other tools in the series:
<a href="http://java.sun.com/javase/6/docs/technotes/tools/index.html#troubleshoot" rel="nofollow" title="Java 6 troubleshooting tools">Java 6 troubleshooting tools</a></p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/35084#3508410Answer by John Meagher for Hidden Features of JavaJohn Meagher2008-08-29T19:17:46Z2008-08-29T19:17:46Z<p>It's not exactly hidden, but reflection is incredibly useful and powerful. It is great to use a simple Class.forName("...").newInstance() where the class type is configurable. It's easy to write this sort of factory implementation. </p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/35108#3510874Answer by serg10 for Hidden Features of Javaserg102008-08-29T19:29:40Z2008-08-29T19:44:26Z<p>How about <strong>covariant return types</strong> which have been in place since JDK 1.5? It is pretty poorly publicised, as it is an unsexy addition, but as I understand it, is absolutely necessary for generics to work. </p>
<p>Essentially, the compiler now allows a subclass to narrow the return type of an overridden method to be a subclass of the original method's return type. So this is allowed:</p>
<pre><code>class Souper {
Collection<String> values() {
...
}
}
class ThreadSafeSortedSub extends Souper {
@Override
ConcurrentSkipListSet<String> values() {
...
}
}
</code></pre>
<p>You can call the subclass's <code>values</code> method and obtain a sorted thread safe <code>Set</code> of <code>String</code>s <strong>without having to down cast</strong> to the <code>ConcurrentSkipListSet</code>.</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/35124#351243Answer by Brad Barker for Hidden Features of JavaBrad Barker2008-08-29T19:36:48Z2008-08-29T19:36:48Z<p>Functors are pretty cool. They are pretty close to a function pointer, which everyone is usually quick to say is impossible in Java.</p>
<p><a href="http://chaoticjava.com/posts/functors-in-java-and-beyond/" rel="nofollow">Functors in Java</a></p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/39433#3943359Answer by Georgy Bolyuba for Hidden Features of JavaGeorgy Bolyuba2008-09-02T12:57:04Z2009-05-12T03:17:42Z<p>For most people I interview for Java developer positions labeled blocks are very surprising. Here is an example:</p>
<pre><code>// code goes here
getmeout:{
for (int i = 0; i < N; ++i) {
for (int j = i; j < N; ++j) {
for (int k = j; k < N; ++k) {
//do something here
break getmeout;
}
}
}
}
</code></pre>
<p>Who said <code>goto</code> in java is just a keyword? :)</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/40967#409678Answer by yalestar for Hidden Features of Javayalestar2008-09-03T00:33:17Z2008-09-03T00:33:17Z<p>I was aware that Java 6 included scripting support, but I just recently discovered <a href="http://java.sun.com/javase/6/docs/technotes/tools/share/jrunscript.html" rel="nofollow">jrunscript</a>,
which can interpret and run JavaScript (and, one presumes, other scripting languages such as Groovy) interactively, sort of like the Python shell or irb in Ruby</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/41023#4102340Answer by jodonnell for Hidden Features of Javajodonnell2008-09-03T01:29:39Z2008-09-03T01:29:39Z<p><a href="http://java.sun.com/j2se/1.3/docs/guide/reflection/proxy.html" rel="nofollow">Dynamic proxies</a> (added in 1.3) allow you to define a new type at runtime that conforms to an interface. It's come in handy a surprising number of times.</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/42686#4268685Answer by Apocalisp for Hidden Features of JavaApocalisp2008-09-03T21:51:46Z2009-08-11T16:13:33Z<p>Joint union in type parameter variance:</p>
<pre><code>public class Baz<T extends Foo & Bar> {}
</code></pre>
<p>For example, if you wanted to take a parameter that's both Comparable and a Collection:</p>
<pre><code>public static <A, B extends Collection<A> & Comparable<B>>
boolean foo(B b1, B b2, A a) {
return (b1.compareTo(b2) == 0) || b1.contains(a) || b2.contains(a);
}
</code></pre>
<p>This contrived method returns true if the two given collections are equal or if either one of them contains the given element, otherwise false. The point to notice is that you can invoke methods of both Comparable and Collection on the arguments b1 and b2.</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/44054#440543Answer by Matt Cummings for Hidden Features of JavaMatt Cummings2008-09-04T15:55:03Z2008-09-04T15:55:03Z<p>I know this was added in release 1.5 but the new <em>enum type</em> is a great feature. Not having to use the old "int enum pattern" has greatly helped a bunch of my code. <a href="http://java.sun.com/docs/books/jls/third_edition/html/classes.html#8.9" rel="nofollow">Check out JLS 8.9</a> for the sweet gravy on your potatoes!</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/47347#473474Answer by dmeister for Hidden Features of Javadmeister2008-09-06T09:07:16Z2008-09-06T09:07:16Z<p><strong>final for instance variables:</strong> </p>
<p>Really useful for multi-threading code and it makes it a lot easier to argue about the instance state and correctness. Haven't seen it a lot in industry context and often not thought in java classes.</p>
<p><hr /></p>
<p><strong>static {something;}:</strong> </p>
<p>Used to initialize static members (also I prefer a static method to do it (because it has a name). Not thought.</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/47493#4749389Answer by David Carlson for Hidden Features of JavaDavid Carlson2008-09-06T14:27:50Z2008-09-17T13:58:35Z<p>I was surprised by instance initializers the other day:</p>
<pre><code>public class Foo {
public Foo() { System.out.println("constructor called"); }
static { System.out.println("static initializer called"); }
{ System.out.println("instance initializer called"); }
}
</code></pre>
<p>Executing the following code </p>
<pre><code>new Foo();
new Foo();
</code></pre>
<p>will display: </p>
<pre><code>static initializer called
instance initializer called
constructor called
instance initializer called
constructor called
</code></pre>
<p>I guess these would be useful if you had multiple constructors and needed common code?</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/49701#497015Answer by warsze for Hidden Features of Javawarsze2008-09-08T13:24:57Z2008-09-08T13:24:57Z<p>Joshua Bloch's new <a href="http://rads.stackoverflow.com/amzn/click/0321356683" rel="nofollow">Effective Java</a> is a good resource.</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/50107#501072Answer by Dan Dyer for Hidden Features of JavaDan Dyer2008-09-08T16:38:47Z2008-09-08T16:38:47Z<ul>
<li><a href="http://www.unix.com.ua/orelly/java-ent/jnut/ch03_11.htm" rel="nofollow">Local classes</a>.</li>
<li><a href="http://virtualinfinity.net/wordpress/java/esoteric-java-features/2007/01/09/6/" rel="nofollow">Instantiating Java inner-classes from outside of the containing class</a>.</li>
</ul>
http://stackoverflow.com/questions/15496/hidden-features-of-java/52914#5291454Answer by Adrian Mouat for Hidden Features of JavaAdrian Mouat2008-09-09T21:10:31Z2008-09-09T21:10:31Z<p>Allowing methods and constructors in enums surprised me. For example:</p>
<pre><code>enum Cats {
FELIX(2), SHEEBA(3), RUFUS(7);
private int mAge;
Cats(int age) {
mAge = age;
}
public int getAge() {
return mAge;
}
}
</code></pre>
<p>You can even have a "constant specific class body" which allows a specific enum value to override methods.</p>
<p>More documentation <a href="http://java.sun.com/j2se/1.5.0/docs/guide/language/enums.html" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/54762#5476212Answer by binil for Hidden Features of Javabinil2008-09-10T17:20:11Z2008-09-10T17:20:11Z<p>Not really part of the Java language, but the javap disassembler which comes with Sun's JDK is not widely known or used.</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/55221#552219Answer by randomrareposts for Hidden Features of Javarandomrareposts2008-09-10T20:18:12Z2008-09-10T20:18:12Z<p>Self-bound generics:</p>
<pre><code>class SelfBounded<T extends SelfBounded<T>> {
}
</code></pre>
<p><a href="http://www.artima.com/weblogs/viewpost.jsp?thread=136394" rel="nofollow">http://www.artima.com/weblogs/viewpost.jsp?thread=136394</a></p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/55616#5561648Answer by Kevin Wong for Hidden Features of JavaKevin Wong2008-09-11T01:15:19Z2008-09-11T01:15:19Z<p>JDK 1.6_07+ contains an app called VisualVM (bin/jvisualvm.exe) that is a nice GUI on top of many of the tools. It seems more comprehensive than JConsole.</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/55679#5567940Answer by Kevin Wong for Hidden Features of JavaKevin Wong2008-09-11T02:09:12Z2008-09-11T02:09:12Z<p>The type params for generic methods can be specified explicitly like so:</p>
<pre><code>Collections.<String,Integer>emptyMap()
</code></pre>
http://stackoverflow.com/questions/15496/hidden-features-of-java/64136#641368Answer by Andrew for Hidden Features of JavaAndrew2008-09-15T15:50:33Z2008-09-15T15:50:33Z<p>It took them long enough to add support for this,</p>
<p><a href="http://java.sun.com/docs/books/tutorial/uiswing/misc/systemtray.html" rel="nofollow">System Tray</a></p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/64164#6416426Answer by Bruno De Fraine for Hidden Features of JavaBruno De Fraine2008-09-15T15:55:15Z2008-09-15T15:55:15Z<p>The <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Arrays.html#asList(T...)" rel="nofollow">asList</a> method in <code>java.util.Arrays</code> allows a nice combination of varargs, generic methods and autoboxing:</p>
<pre><code>List<Integer> ints = Arrays.asList(1,2,3);
</code></pre>
http://stackoverflow.com/questions/15496/hidden-features-of-java/64274#642745Answer by Bruno De Fraine for Hidden Features of JavaBruno De Fraine2008-09-15T16:08:02Z2008-09-15T16:08:02Z<p>Some control-flow tricks, <code>finally</code> around a <code>return</code> statement:</p>
<pre><code>int getCount() {
try { return 1; }
finally { System.out.println("Bye!"); }
}
</code></pre>
<p>The rules for <a href="http://java.sun.com/docs/books/jls/third_edition/html/defAssign.html" rel="nofollow">definite assignment</a> will check that a final variable is always assigned through a simple control-flow analysis:</p>
<pre><code>final int foo;
if(...)
foo = 1;
else
throw new Exception();
foo+1;
</code></pre>
http://stackoverflow.com/questions/15496/hidden-features-of-java/64369#643695Answer by Bill Michell for Hidden Features of JavaBill Michell2008-09-15T16:19:57Z2008-09-15T16:19:57Z<p>JVisualVM from the bin directory in the JDK distribution. Monitoring and even profiling any java application, even one you didn't launch with any special parameters. Only in recent versions of the Java 6SE JDK.</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/64618#6461853Answer by James A. N. Stauffer for Hidden Features of JavaJames A. N. Stauffer2008-09-15T16:49:51Z2008-09-15T16:49:51Z<p>Transfer of control in a finally block throws away any exception. The following code does not throw RuntimeException -- it is lost.</p>
<pre>
public static void doSomething() {
try {
//Normally you would have code that doesn't explicitly appear
//to throw exceptions so it would be harder to see the problem.
throw new RuntimeException();
} finally {
return;
}
}
</pre>
<p>From <a href="http://jamesjava.blogspot.com/2006/03/dont-return-in-finally-clause.html" rel="nofollow">http://jamesjava.blogspot.com/2006/03/dont-return-in-finally-clause.html</a></p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/75519#7551925Answer by 18Rabbit for Hidden Features of Java18Rabbit2008-09-16T18:35:19Z2008-09-16T18:35:19Z<p>The addition of the for-each loop construct in 1.5. I <3 it.</p>
<pre><code>// For each Object, instantiated as foo, in myCollection
for(Object foo: myCollection) {
System.out.println(foo.toString());
}
</code></pre>
<p>And can be used in nested instances:</p>
<pre><code>for (Suit suit : suits)
for (Rank rank : ranks)
sortedDeck.add(new Card(suit, rank));
</code></pre>
<p>The for-each construct is also applicable to arrays, where it hides the index variable rather than the iterator. The following method returns the sum of the values in an int array: </p>
<pre><code>// Returns the sum of the elements of a
int sum(int[] a) {
int result = 0;
for (int i : a)
result += i;
return result;
}
</code></pre>
<p><a href="http://java.sun.com/j2se/1.5.0/docs/guide/language/foreach.html" rel="nofollow">Link to the Sun documentation</a></p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/76317#763170Answer by mmyers for Hidden Features of Javammyers2008-09-16T20:01:59Z2008-09-16T20:01:59Z<p>"const" is a keyword, but you can't use it.</p>
<pre><code>int const = 1; // "not a statement"
const int i = 1; // "illegal start of expression"
</code></pre>
<p>I guess the compiler writers thought it might be used in the future and they'd better keep it reserved.</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/82236#822368Answer by PhiLho for Hidden Features of JavaPhiLho2008-09-17T11:39:29Z2008-09-17T11:39:29Z<p>Not really a feature, but an amusing trick I discovered recently in some Web page:</p>
<pre><code>class Example
{
public static void main(String[] args)
{
System.out.println("Hello World!");
http://Phi.Lho.free.fr
System.exit(0);
}
}
</code></pre>
<p>is a valid Java program (although it generates a warning).
If you don't see why, see Gregory's answer! ;-) Well, syntax highlighting here also gives a hint!</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/83113#8311328Answer by Chris Mazzola for Hidden Features of JavaChris Mazzola2008-09-17T13:23:06Z2009-06-30T09:14:56Z<p>My favorite: dump all thread stack traces to standard out.</p>
<p>windows: <kbd>CTRL</kbd>-<kbd>Break</kbd> in your java cmd/console window</p>
<p>unix: <code>kill -3 PID</code></p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/85703#857033Answer by mpresley for Hidden Features of Javampresley2008-09-17T17:37:59Z2008-09-17T17:37:59Z<p>The power you can have over the garbage collector and how it manages object collection is very powerful, especially for long-running and time-sensitive applications. It starts with weak, soft, and phantom references in the java.lang.ref package. Take a look at those, especially for building caches (there is a java.util.WeakHashMap already). Now dig a little deeper into the ReferenceQueue and you'll start having even more control. Finally grab the docs on the garbage collector itself and you'll be able to control how often it runs, sizes of different collection areas, and the types of algorithms used (for Java 5 see <a href="http://java.sun.com/docs/hotspot/gc5.0/gc_tuning_5.html" rel="nofollow">http://java.sun.com/docs/hotspot/gc5.0/gc_tuning_5.html</a>). </p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/101659#10165919Answer by Tahir Akhtar for Hidden Features of JavaTahir Akhtar2008-09-19T13:02:49Z2008-09-19T13:02:49Z<p>Using <strong>this</strong> keyword for accessing fields/methods of containing class from an inner class. In below, rather contrived example, we want to use sortAscending field of container class from the anonymous inner class. Using ContainerClass.this.sortAscending instead of this.sortAscending does the trick.</p>
<pre><code>import java.util.Comparator;
public class ContainerClass {
boolean sortAscending;
public Comparator createComparator(final boolean sortAscending){
Comparator comparator = new Comparator<Integer>() {
public int compare(Integer o1, Integer o2) {
if (sortAscending || ContainerClass.this.sortAscending) {
return o1 - o2;
} else {
return o2 - o1;
}
}
};
return comparator;
}
}
</code></pre>
http://stackoverflow.com/questions/15496/hidden-features-of-java/101851#10185119Answer by Das for Hidden Features of JavaDas2008-09-19T13:35:12Z2008-09-19T13:35:12Z<p>This is not exactly "hidden features" and not very useful, but can be extremely interesting in some cases:<br>
Class sun.misc.Unsafe - will allow you to implement <em>direct memory management</em> in Java (you can even write self-modifying Java code with this if you try a lot):</p>
<pre><code>public class UnsafeUtil {
public static Unsafe unsafe;
private static long fieldOffset;
private static UnsafeUtil instance = new UnsafeUtil();
private Object obj;
static {
try {
Field f = Unsafe.class.getDeclaredField("theUnsafe");
f.setAccessible(true);
unsafe = (Unsafe)f.get(null);
fieldOffset = unsafe.objectFieldOffset(UnsafeUtil.class.getDeclaredField("obj"));
} catch (Exception e) {
throw new RuntimeException(e);
}
};
}
</code></pre>
http://stackoverflow.com/questions/15496/hidden-features-of-java/107067#1070672Answer by biojae for Hidden Features of Javabiojae2008-09-20T04:14:30Z2008-09-20T04:14:30Z<p>Since no one else has said it yet (I Think) my favorite feature is Auto boxing!</p>
<pre><code>public class Example
{
public static void main(String[] Args)
{
int a = 5;
Integer b = a; // Box!
System.out.println("A : " + a);
System.out.println("B : " + b);
}
}
</code></pre>
http://stackoverflow.com/questions/15496/hidden-features-of-java/129378#1293783Answer by Alan Moore for Hidden Features of JavaAlan Moore2008-09-24T19:37:07Z2008-09-24T19:37:07Z<p>How about Properties files in your choice of encodings? Used to be, when you loaded your Properties, you provided an InputStream and the <code>load()</code> method decoded it as ISO-8859-1. You <em>could</em> actually store the file in some other encoding, but you had to use a disgusting hack like this after loading to properly decode the data: </p>
<pre><code>String realProp = new String(prop.getBytes("ISO-8859-1"), "UTF-8");
</code></pre>
<p>But, as of JDK 1.6, there's a <code>load()</code> method that takes a Reader instead of an InputStream, which means you can use the correct encoding from the beginning (there's also a <code>store()</code> method that takes a Writer). This seems like a pretty big deal to me, but it appears to have been snuck into the JDK with no fanfare at all. I only stumbled upon it a few weeks ago, and a quick Google search turned up just one passing mention of it.</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/137600#13760012Answer by Kevin Day for Hidden Features of JavaKevin Day2008-09-26T03:30:29Z2008-09-26T04:44:47Z<p>If you do a lot of JavaBean development and work with property change support, you generally wind up writing a <em>lot</em> of setters like this:</p>
<pre><code>public void setFoo(Foo aFoo){
Foo old = this.foo;
this.foo = aFoo;
changeSupport.firePropertyChange("foo", old, aFoo);
}
</code></pre>
<p>I recently stumbled across a blog that suggested a more terse implementation of this that makes the code a lot easier to write:</p>
<pre><code>public void setFoo(Foo aFoo){
changeSupport.firePropertyChange("foo", this.foo, this.foo = aFoo);
}
</code></pre>
<p>It actually simplified things to the point where I was able to adjust the setter template in Eclipse so the method gets created automatically.</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/139379#1393793Answer by Martin Spamer for Hidden Features of JavaMartin Spamer2008-09-26T13:06:23Z2008-09-26T13:06:23Z<p><strong>String Parameterised Class Factory.</strong></p>
<pre><code>Class.forName( className ).newInstance();
</code></pre>
<p><strong>Load a resource (property file, xml, xslt, image etc) from deployment jar file</strong>.</p>
<pre><code>this.getClass().getClassLoader().getResourceAsStream( ... ) ;
</code></pre>
http://stackoverflow.com/questions/15496/hidden-features-of-java/142676#1426766Answer by Oscar Reyes for Hidden Features of JavaOscar Reyes2008-09-27T01:11:17Z2008-11-26T19:17:09Z<p>Something that really surprised me was the custom serialization mechanism.</p>
<p>While these methods are <strong>private!!</strong>, they are "<em>mysteriously</em>" called by the JVM during object serialization.</p>
<pre><code>private void writeObject(ObjectOutputStream out) throws IOException;
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException;
</code></pre>
<p>This way you can create your own custom serialization to make it more "whatever" (safe, fast, rare, easy etc. ) </p>
<p>This is something that really should be considering if a lot of information has to be passed through nodes. The serialization mechanism may be changed to send the half of data. There are many times when the bottlenecks are not in the platform, but in the amount of that sent trough the wire, may save you thousands of dlls in hardware.</p>
<p>Here is an article.
<a href="http://java.sun.com/developer/technicalArticles/Programming/serialization/" rel="nofollow">http://java.sun.com/developer/technicalArticles/Programming/serialization/</a></p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/146121#1461217Answer by oxbow_lakes for Hidden Features of Javaoxbow_lakes2008-09-28T15:45:22Z2008-09-28T15:45:22Z<p>You can declare a class in a method:</p>
<pre><code>public Foo foo(String in) {
class FooFormat extends Format {
public Object parse(String s, ParsePosition pp) { // parse stuff }
}
return (Foo) new FooFormat().parse(in);
}
</code></pre>
http://stackoverflow.com/questions/15496/hidden-features-of-java/148282#1482824Answer by pimeja for Hidden Features of Javapimeja2008-09-29T11:09:52Z2008-09-29T11:09:52Z<p>Annotation Processing API from Java 6 looks very perspective for code generation and static code verification.</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/169064#16906418Answer by Allain Lalonde for Hidden Features of JavaAllain Lalonde2008-10-03T21:59:37Z2009-01-07T18:29:42Z<p><strong>final initialization can be postponed.</strong></p>
<p>It makes sure that even with a complex flow of logic return values are always set. It's too easy to miss a case and return null by accident. It doesn't make returning null impossible, just obvious that it's on purpose:</p>
<pre><code>public Object getElementAt(int index) {
final Object element;
if (index == 0) {
element = "Result 1";
} else if (index == 1) {
element = "Result 2";
} else {
element = "Result 3";
}
return element;
}
</code></pre>
http://stackoverflow.com/questions/15496/hidden-features-of-java/170999#1709992Answer by Claes Jakobsson for Hidden Features of JavaClaes Jakobsson2008-10-04T21:05:34Z2008-10-04T21:05:34Z<p>Some years ago when I had to do Java (1.4.x) I wanted an eval() method and Suns javac is (was?) written in Java so it was just to link tools.jar and use that with some glue-code around it.</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/175511#17551115Answer by Bill K for Hidden Features of JavaBill K2008-10-06T18:14:51Z2008-10-06T18:14:51Z<p>Java processing does a neat trick on variable definition if you do not use a default initializer.</p>
<pre>
{
int x;
if(whatever)
x=1;
if(x == 1)
...
}
</pre>
<p>This will give you an error at compile time that you have a path where X isn't properly defined. This has helped me a few times, and I've taken to considering default initialization like these:</p>
<pre>
int x=0;
String s=null;
</pre>
<p>to be a bad pattern since it blocks this helpful checking.</p>
<p>That said, sometimes it's difficult to get around--I have had to go back and edit in the =null when it made sense as a default, but I never put it in on the first pass any more.</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/212066#212066-2Answer by Steve McLeod for Hidden Features of JavaSteve McLeod2008-10-17T13:16:54Z2008-10-17T13:16:54Z<p>These answers almost could be a website in themselves... Hidden Java... Hmmm...</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/229899#2298993Answer by hstoerr for Hidden Features of Javahstoerr2008-10-23T14:18:16Z2008-12-17T17:46:57Z<p>You can access final local variables and parameters in initialization blocks and methods of local classes. Consider this:</p>
<pre><code> final String foo = "42";
new Thread() {
public void run() {
dowhatever(foo);
}
}.start();
</code></pre>
<p>A bit like a closure, isn't it?</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/238827#2388275Answer by Jack Leow for Hidden Features of JavaJack Leow2008-10-27T00:03:39Z2008-10-27T00:03:39Z<p>The value of:</p>
<pre><code>new URL("http://www.yahoo.com").equals(new URL("http://209.191.93.52"))
</code></pre>
<p>is <code>true</code>.</p>
<p>(From Java Puzzlers)</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/238837#23883728Answer by Jack Leow for Hidden Features of JavaJack Leow2008-10-27T00:12:44Z2009-11-27T08:06:12Z<p>A couple of people have posted about instance initializers, here's a good use for it:</p>
<pre><code>Map map = new HashMap() {{
put("a key", "a value");
put("another key", "another value");
}};
</code></pre>
<p>Is a quick way to initialize maps if you're just doing something quick and simple.</p>
<p>Or using it to create a quick swing frame prototype:</p>
<pre><code>JFrame frame = new JFrame();
JPanel panel = new JPanel();
panel.add( new JLabel("Hey there"){{
setBackground(Color.black);
setForeground( Color.white);
}});
panel.add( new JButton("Ok"){{
addActionListener( new ActionListener(){
public void actionPerformed( ActionEvent ae ){
System.out.println("Button pushed");
}
});
}});
frame.add( panel );
</code></pre>
<p>Of course it can be abused:</p>
<pre><code> JFrame frame = new JFrame(){{
add( new JPanel(){{
add( new JLabel("Hey there"){{
setBackground(Color.black);
setForeground( Color.white);
}});
add( new JButton("Ok"){{
addActionListener( new ActionListener(){
public void actionPerformed( ActionEvent ae ){
System.out.println("Button pushed");
}
});
}});
}});
}};
</code></pre>
http://stackoverflow.com/questions/15496/hidden-features-of-java/259287#25928730Answer by Paul Wicks for Hidden Features of JavaPaul Wicks2008-11-03T17:02:46Z2008-11-03T17:02:46Z<p>As of Java 1.5, Java now has a much cleaner syntax for writing functions of variable arity. So, instead of just passing an array, now you can do the following</p>
<pre><code>public void foo(String... bars) {
for (String bar: bars)
System.out.println(bar);
}
</code></pre>
<p>bars is automatically converted to array of the specified type. Not a huge win, but a win nonetheless.</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/284614#2846147Answer by nickm73 for Hidden Features of Javanickm732008-11-12T16:59:39Z2008-11-12T16:59:39Z<p>Javadoc - when written properly (not always the case with some developers unfortunately), it gives you a clear, coherent description of what code is supposed to do, as opposed to what it actually does. It can then be turned into a nice browsable set of HTML documentation. If you use continuous integration etc it can be generated regularly so all developers can see the latest updates.</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/306721#3067213Answer by Dan Vinton for Hidden Features of JavaDan Vinton2008-11-20T20:19:01Z2008-11-20T20:19:01Z<p><a href="http://en.wikipedia.org/wiki/SwingWorker" rel="nofollow">SwingWorker</a> for easily managing user interface callbacks from background threads.</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/321782#3217821Answer by David for Hidden Features of JavaDavid2008-11-26T19:04:22Z2008-11-26T19:04:22Z<p>Instances of the same class can access private members of other instances:</p>
<pre><code>class Thing {
private int x;
public int addThings(Thing t2) {
return this.x + t2.x; // Can access t2's private value!
}
}
</code></pre>
http://stackoverflow.com/questions/15496/hidden-features-of-java/321829#321829-7Answer by vikas-patil for Hidden Features of Javavikas-patil2008-11-26T19:15:24Z2008-11-26T19:15:24Z<p>If you hook onto groovy, you will have many more surprises than these :-)</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/336346#3363462Answer by Joe for Hidden Features of JavaJoe2008-12-03T06:21:29Z2008-12-03T06:21:29Z<p>Apparently with some debug builds there is an option which dumps the native (JIT) assembly code from HotSpot: <a href="http://weblogs.java.net/blog/kohsuke/archive/2008/03/deep_dive_into.html" rel="nofollow">http://weblogs.java.net/blog/kohsuke/archive/2008/03/deep_dive_into.html</a></p>
<p>Unfortunately I wasn't able to find the build via the link in that post, if anyone can find a more precise URL, I'd love to play with it.</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/341823#34182311Answer by stili for Hidden Features of Javastili2008-12-04T19:51:57Z2008-12-04T19:51:57Z<p>My vote goes to <strong>java.util.concurrent</strong> with its concurrent collections and flexible executors allowing among others thread pools, scheduled tasks and coordinated tasks. The DelayQueue is my personal favorite, where elements are made available after a specified delay.</p>
<p>java.util.Timer and TimerTask may safely be put to rest.</p>
<p>Also, not exactly hidden but in a different package from the other classes related to date and time. java.util.concurrent.TimeUnit is useful when converting between nanoseconds, microseconds, milliseconds and seconds.</p>
<p>It reads a lot better than the usual someValue * 1000 or someValue / 1000.</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/404567#4045674Answer by Romain Guy for Hidden Features of JavaRomain Guy2009-01-01T05:19:38Z2009-01-01T05:19:38Z<p>The strictfp keyword. (I never saw it used in a real application though :)</p>
<p>You can get the class for primitive types by using the following notation: int.class,
float.class, etc. Very useful when doing reflection.</p>
<p>Final arrays can be used to "return" values from anonymous inner classes (warning, useless example below):</p>
<pre><code>final boolean[] result = new boolean[1];
SwingUtilities.invokeLater(new Runnable() {
public void run() { result[0] = true; }
});
</code></pre>
http://stackoverflow.com/questions/15496/hidden-features-of-java/457863#45786320Answer by Cadet Pirx for Hidden Features of JavaCadet Pirx2009-01-19T15:01:05Z2009-01-19T15:01:05Z<p>Haven't seen anyone mention instanceof being implemented in such a way that checking for null is not necessary.</p>
<p>Instead of:</p>
<pre><code>if( null != aObject && aObject instanceof String )
{
...
}
</code></pre>
<p>just use:</p>
<pre><code>if( aObject instanceof String )
{
...
}
</code></pre>
http://stackoverflow.com/questions/15496/hidden-features-of-java/492663#4926630Answer by grayger for Hidden Features of Javagrayger2009-01-29T17:44:43Z2009-01-29T17:44:43Z<p>I enjoyed</p>
<ol>
<li><a href="http://java.sun.com/javase/6/docs/technotes/guides/javadoc/" rel="nofollow">javadoc</a>'s taglet and doclet that enable us to customize javadoc output.</li>
<li><a href="http://java.sun.com/javase/6/docs/technotes/tools/" rel="nofollow">JDK tools</a>: jstat, jstack etc.</li>
</ol>
http://stackoverflow.com/questions/15496/hidden-features-of-java/511975#5119750Answer by sjbotha for Hidden Features of Javasjbotha2009-02-04T15:58:41Z2009-02-04T15:58:41Z<p>The next-generation Java plugin found in Java 1.6 Update 10 and later has some very neat features:</p>
<ul>
<li>Pass java_arguments parameter to pass arguments to the JVM that is created. This allows you to control the amount of memory given to the applet.</li>
<li>Create separate class loaders or even separate JVM's for each applet.</li>
<li>Specify the JVM version to use.</li>
<li>Install partial Java kernels in cases where you only need a subset of the full Java libraries' functionality.</li>
<li>Better Vista support.</li>
<li>Support (experimental) to drag an applet out of the browser and have it keep running when you navigate away.</li>
</ul>
<p>Many other things that are documented here: <a href="http://jdk6.dev.java.net/plugin2/" rel="nofollow">http://jdk6.dev.java.net/plugin2/</a></p>
<p>More from this release here: <a href="http://jdk6.dev.java.net/6u10ea.html" rel="nofollow">http://jdk6.dev.java.net/6u10ea.html</a></p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/512216#5122164Answer by sjbotha for Hidden Features of Javasjbotha2009-02-04T16:52:03Z2009-02-04T16:52:03Z<p>You can build a string sprintf-style using String.format().</p>
<pre><code>String w = "world";
String s = String.format("Hello %s %d", w, 3);
</code></pre>
<p>You can of course also use special specifiers to modify the output.</p>
<p>More here: <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Formatter.html#syntax" rel="nofollow">http://java.sun.com/j2se/1.5.0/docs/api/java/util/Formatter.html#syntax</a></p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/512368#5123688Answer by drscroogemcduck for Hidden Features of Javadrscroogemcduck2009-02-04T17:19:12Z2009-11-27T08:00:46Z<p>with static imports you can do cool stuff like: </p>
<pre><code>List<String> myList = list("foo", "bar");
Set<String> mySet = set("foo", "bar");
Map<String, String> myMap = map(v("foo", "2"), v("bar", "3"));
</code></pre>
http://stackoverflow.com/questions/15496/hidden-features-of-java/556664#5566642Answer by youri for Hidden Features of Javayouri2009-02-17T12:56:31Z2009-02-18T08:03:30Z<p>I like the static import of methods.</p>
<p>For example create the following util class:</p>
<pre><code>package package.name;
public class util {
private static void doStuff1(){
//the end
}
private static String doStuff2(){
return "the end";
}
}
</code></pre>
<p>Then use it like this.</p>
<pre><code>import static package.name.util.*;
public class main{
public static void main(String[] args){
dostuff1();// wee no more typing util.dostuff1()
System.out.print(dostuff2()); // or util.dostuff2()
}
}
</code></pre>
http://stackoverflow.com/questions/15496/hidden-features-of-java/556756#5567568Answer by chillitom for Hidden Features of Javachillitom2009-02-17T13:22:17Z2009-02-17T13:22:17Z<p><strong>List.subList returns a view on the original list</strong></p>
<p>A documented but little known feature of lists. This allows you to work with parts of a list with changes mirrored in the original list.</p>
<p><strong>List subList(int fromIndex, int toIndex)</strong> </p>
<blockquote>
<p>"This method eliminates the need for explicit range operations (of the sort that commonly exist for arrays). Any operation that expects a list can be used as a range operation by passing a subList view instead of a whole list. For example, the following idiom removes a range of elements from a list:</p>
<pre><code> list.subList(from, to).clear();
</code></pre>
<p>Similar idioms may be constructed for indexOf and lastIndexOf, and all of the algorithms in the Collections class can be applied to a subList."</p>
</blockquote>
http://stackoverflow.com/questions/15496/hidden-features-of-java/556772#5567726Answer by netzwerg for Hidden Features of Javanetzwerg2009-02-17T13:25:09Z2009-02-17T13:25:09Z<p>i personally discovered <code>java.lang.Void</code> very late -- improves code readability in conjunction with generics, e.g. <code>Callable<Void></code></p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/562852#5628529Answer by Peter Lawrey for Hidden Features of JavaPeter Lawrey2009-02-18T21:10:20Z2009-02-18T21:10:20Z<p>You can use enums to implement an interface.</p>
<pre><code>public interface Room {
public Room north();
public Room south();
public Room east();
public Room west();
}
public enum Rooms implements Room {
FIRST {
public Room north() {
return SECOND;
}
},
SECOND {
public Room south() {
return FIRST;
}
}
public Room north() { return null; }
public Room south() { return null; }
public Room east() { return null; }
public Room west() { return null; }
}
</code></pre>
http://stackoverflow.com/questions/15496/hidden-features-of-java/574522#5745222Answer by paulmurray for Hidden Features of Javapaulmurray2009-02-22T07:22:36Z2009-02-22T07:22:36Z<p>Intersection types allow you to (kinda sorta) do enums that have an inheritance hierarchy. You can't inherit implementation, but you can delegate it to a helper class.</p>
<pre><code>enum Foo1 implements Bar {}
enum Foo2 implements Bar {}
class HelperClass {
static <T extends Enum<T> & Bar> void fooBar(T the enum) {}
}
</code></pre>
<p>This is useful when you have a number of different enums that implement some sort of pattern. For instance, a number of pairs of enums that have a parent-child relationship.</p>
<pre><code>enum PrimaryColor {Red, Green, Blue;}
enum PastelColor {Pink, HotPink, Rockmelon, SkyBlue, BabyBlue;}
enum TransportMedium {Land, Sea, Air;}
enum Vehicle {Car, Truck, BigBoat, LittleBoat, JetFighter, HotAirBaloon;}
</code></pre>
<p>You can write generic methods that say "Ok, given an enum value thats a parent of some other enum values, what percentage of all the possible child enums of the child type have this particular parent value as their parent?", and have it all typesafe and done without casting. (eg: that "Sea" is 33% of all possible vehicles, and "Green" 20% of all possible Pastels).</p>
<p>The code look like this. It's pretty nasty, but there are ways to make it better. Note in particuar that the "leaf" classes themselves are quite neat - the generic classes have declarations that are horribly ugly, but you only write them onece. Once the generic classes are there, then using them is easy.</p>
<pre><code>import java.util.EnumSet;
import javax.swing.JComponent;
public class zz extends JComponent {
public static void main(String[] args) {
System.out.println(PrimaryColor.Green + " " + ParentUtil.pctOf(PrimaryColor.Green) + "%");
System.out.println(TransportMedium.Air + " " + ParentUtil.pctOf(TransportMedium.Air) + "%");
}
}
class ParentUtil {
private ParentUtil(){}
static <P extends Enum<P> & Parent<P, C>, C extends Enum<C> & Child<P, C>> //
float pctOf(P parent) {
return (float) parent.getChildren().size() / //
(float) EnumSet.allOf(parent.getChildClass()).size() //
* 100f;
}
public static <P extends Enum<P> & Parent<P, C>, C extends Enum<C> & Child<P, C>> //
EnumSet<C> loadChildrenOf(P p) {
EnumSet<C> cc = EnumSet.noneOf(p.getChildClass());
for(C c: EnumSet.allOf(p.getChildClass())) {
if(c.getParent() == p) {
cc.add(c);
}
}
return cc;
}
}
interface Parent<P extends Enum<P> & Parent<P, C>, C extends Enum<C> & Child<P, C>> {
Class<C> getChildClass();
EnumSet<C> getChildren();
}
interface Child<P extends Enum<P> & Parent<P, C>, C extends Enum<C> & Child<P, C>> {
Class<P> getParentClass();
P getParent();
}
enum PrimaryColor implements Parent<PrimaryColor, PastelColor> {
Red, Green, Blue;
private EnumSet<PastelColor> children;
public Class<PastelColor> getChildClass() {
return PastelColor.class;
}
public EnumSet<PastelColor> getChildren() {
if(children == null) children=ParentUtil.loadChildrenOf(this);
return children;
}
}
enum PastelColor implements Child<PrimaryColor, PastelColor> {
Pink(PrimaryColor.Red), HotPink(PrimaryColor.Red), //
Rockmelon(PrimaryColor.Green), //
SkyBlue(PrimaryColor.Blue), BabyBlue(PrimaryColor.Blue);
final PrimaryColor parent;
private PastelColor(PrimaryColor parent) {
this.parent = parent;
}
public Class<PrimaryColor> getParentClass() {
return PrimaryColor.class;
}
public PrimaryColor getParent() {
return parent;
}
}
enum TransportMedium implements Parent<TransportMedium, Vehicle> {
Land, Sea, Air;
private EnumSet<Vehicle> children;
public Class<Vehicle> getChildClass() {
return Vehicle.class;
}
public EnumSet<Vehicle> getChildren() {
if(children == null) children=ParentUtil.loadChildrenOf(this);
return children;
}
}
enum Vehicle implements Child<TransportMedium, Vehicle> {
Car(TransportMedium.Land), Truck(TransportMedium.Land), //
BigBoat(TransportMedium.Sea), LittleBoat(TransportMedium.Sea), //
JetFighter(TransportMedium.Air), HotAirBaloon(TransportMedium.Air);
private final TransportMedium parent;
private Vehicle(TransportMedium parent) {
this.parent = parent;
}
public Class<TransportMedium> getParentClass() {
return TransportMedium.class;
}
public TransportMedium getParent() {
return parent;
}
}
</code></pre>
http://stackoverflow.com/questions/15496/hidden-features-of-java/730565#7305651Answer by ramayac for Hidden Features of Javaramayac2009-04-08T15:36:42Z2009-04-08T15:36:42Z<p>Casting/Conversion by precedence in Java 1.4, this code:</p>
<pre><code>int a = 2;
System.out.println(new Integer(a++).toString());
</code></pre>
<p>Can be "represented" like this: </p>
<pre><code>int a = 2;
System.out.println(""+(a++));
</code></pre>
http://stackoverflow.com/questions/15496/hidden-features-of-java/766774#7667743Answer by David Plumpton for Hidden Features of JavaDavid Plumpton2009-04-20T03:26:55Z2009-04-20T03:26:55Z<p>Read "Java Puzzlers" by Joshua Bloch and you will be both enlightened and horrified.</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/851055#8510550Answer by David Plumpton for Hidden Features of JavaDavid Plumpton2009-05-12T03:47:42Z2009-05-12T03:47:42Z<p>Source code URLs. E.g. here is some legal java source code:</p>
<pre><code>http://google.com
</code></pre>
<p>(Yes, it was in Java Puzzlers. I laughed...)</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/945115#9451152Answer by Huxi for Hidden Features of JavaHuxi2009-06-03T14:32:26Z2009-06-03T14:32:26Z<p>People are sometimes a bit surprised when they realize that it's possible to call private methods and access/change private fields using reflection...</p>
<p>Consider the following class:</p>
<pre><code>public class Foo {
private int bar;
public Foo() {
setBar(17);
}
private void setBar(int bar) {
this.bar=bar;
}
public int getBar() {
return bar;
}
public String toString() {
return "Foo[bar="+bar+"]";
}
}
</code></pre>
<p>Executing this program...</p>
<pre><code>import java.lang.reflect.*;
public class AccessibleExample {
public static void main(String[] args)
throws NoSuchMethodException,IllegalAccessException, InvocationTargetException, NoSuchFieldException {
Foo foo=new Foo();
System.out.println(foo);
Method method=Foo.class.getDeclaredMethod("setBar", int.class);
method.setAccessible(true);
method.invoke(foo, 42);
System.out.println(foo);
Field field=Foo.class.getDeclaredField("bar");
field.setAccessible(true);
field.set(foo, 23);
System.out.println(foo);
}
}
</code></pre>
<p>...will yield the following output:</p>
<pre><code>Foo[bar=17]
Foo[bar=42]
Foo[bar=23]
</code></pre>
http://stackoverflow.com/questions/15496/hidden-features-of-java/949397#9493974Answer by AaronG for Hidden Features of JavaAaronG2009-06-04T09:06:47Z2009-06-04T09:06:47Z<p>Part feature, part bother: Java's String handling to make it 'appear' a native Type (use of operators on them, +, +=)</p>
<p>Being able to write:</p>
<pre><code>String s = "A";
s += " String"; // so s == "A String"
</code></pre>
<p>is very convenient, but is simply syntactic sugar for (ie gets compiled to):</p>
<pre><code>String s = new String("A");
s = new StringBuffer(s).append(" String").toString();
</code></pre>
<p>ergo an Object instantiation and 2 method invocations for a simple concatenation. Imagine Building a long String inside a loop in this manner!? AND all of StringBuffer's methods are declared synchronized. Thankfully in (I think) Java 5 they introduced StringBuilder which is identical to StringBuffer without the syncronization.</p>
<p>A loop such as:</p>
<pre><code>String s = "";
for (int i = 0 ; i < 1000 ; ++i)
s += " " + i; // Really an Object instantiation & 3 method invocations!
</code></pre>
<p>can (should) be rewritten in your code as:</p>
<pre><code>StringBuilder buf = new StringBuilder(); // Empty buffer
for (int i = 0 ; i < 1000 ; ++i)
buf.append(' ').append(i); // Cut out the object instantiation & reduce to 2 method invocations
String s = buf.toString();
</code></pre>
<p>and will run approximately 80+% faster than the original loop!
(up to 180% on some benchmarks I have run)</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/983366#9833663Answer by Peter Lawrey for Hidden Features of JavaPeter Lawrey2009-06-11T20:10:28Z2009-06-11T20:10:28Z<p>Perhaps the most surprising hidden feature is the sun.misc.Unsafe class.</p>
<p><a href="http://www.docjar.com/html/api/ClassLib/Common/sun/misc/Unsafe.java.html" rel="nofollow">http://www.docjar.com/html/api/ClassLib/Common/sun/misc/Unsafe.java.html</a></p>
<p>You can;</p>
<ul>
<li>Create an object without calling a constructor.</li>
<li>Throw any exception even Exception without worrying about throws clauses on methods. (There are other way to do this I know)</li>
<li>Get/set randomly accessed fields in an object without using reflection.</li>
<li>allocate/free/copy/resize a block of memory which can be long (64-bit) in size.</li>
<li>Obtain the location of fields in an object or static fields in a class.</li>
<li>independently lock and unlock an object lock. (like synchronize without a block)</li>
<li>define a class from provided byte codes. Rather than the classloader determining what the byte code should be. (You can do this with reflection as well)</li>
</ul>
<p>BTW: Incorrect use of this class will kill the JVM. I don't know which JVMs support this class so its not portable.</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/1025199#10251998Answer by Ron for Hidden Features of JavaRon2009-06-22T01:17:28Z2009-06-22T01:17:28Z<p>You can define an anonymous subclass and directly call a method on it even if it implements no interfaces.</p>
<pre><code>new Object() {
void foo(String s) {
System.out.println(s);
}
}.foo("Hello");
</code></pre>
http://stackoverflow.com/questions/15496/hidden-features-of-java/1025306#10253064Answer by Dave Jarvis for Hidden Features of JavaDave Jarvis2009-06-22T02:46:05Z2009-06-22T20:53:21Z<p>An optimization trick that makes your code easier to maintain and less susceptible to a concurrency bug.</p>
<pre><code>public class Slow {
/** Loop counter; initialized to 0. */
private long i;
public static void main( String args[] ) {
Slow slow = new Slow();
slow.run();
}
private void run() {
while( i++ < 10000000000L )
;
}
}
</code></pre>
<p>$ time java Slow<br />
real 0m15.397s<br />
$ time java Slow<br />
real 0m20.012s<br />
$ time java Slow<br />
real 0m18.645s<br /></p>
<p><strong>Average: 18.018s</strong></p>
<pre><code>public class Fast {
/** Loop counter; initialized to 0. */
private long i;
public static void main( String args[] ) {
Fast fast = new Fast();
fast.run();
}
private void run() {
long i = getI();
while( i++ < 10000000000L )
;
setI( i );
}
private long setI( long i ) {
this.i = i;
}
private long getI() {
return this.i;
}
}
</code></pre>
<p>$ time java Fast<br />
real 0m12.003s<br />
$ time java Fast<br />
real 0m9.840s<br />
$ time java Fast<br />
real 0m9.686s<br /></p>
<p><strong>Average: 10.509s</strong></p>
<p>It requires more bytecodes to reference a class-scope variable than a method-scope variable. The addition of a method call prior to the critical loop adds little overhead (and the call might be inlined by the compiler anyway).</p>
<p>Another advantage to this technique (always using accessors) is that it eliminates a potential bug in the <strong>Slow</strong> class. If a second thread were to continually reset the value of <strong>i</strong> to 0 (by calling <code>slow.setI( 0 )</code>, for example), the <strong>Slow</strong> class could never end its loop. Calling the accessor and using a local variable eliminates that possibility.</p>
<p>Tested using J2SE 1.6.0_13 on Linux 2.6.27-14.</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/1027744#10277440Answer by Nat for Hidden Features of JavaNat2009-06-22T15:10:26Z2009-06-22T15:10:26Z<p>Java Bean property accessor methods do <em>not</em> have to start with "get" and "set". </p>
<p>Even Josh Bloch gets this wrong in Effective Java.</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/1191782#11917823Answer by Peter for Hidden Features of JavaPeter2009-07-28T03:21:04Z2009-07-28T03:21:04Z<p>I just (re)learned today that $ is a legal name for a method or variable in Java. Combined with static imports it can make for some slightly more readable code, depending on your view of readable:</p>
<p><a href="http://garbagecollected.org/2008/04/06/dollarmaps/" rel="nofollow">http://garbagecollected.org/2008/04/06/dollarmaps/</a></p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/1276933#12769331Answer by ivant for Hidden Features of Javaivant2009-08-14T09:35:40Z2009-08-14T09:35:40Z<p>It has already been <a href="http://stackoverflow.com/questions/15496/hidden-features-of-java/404567#404567">mentioned</a> that a final array can be used to pass a variable out of the anonymous inner classes.</p>
<p>Another, arguably better and less ugly approach though is to use AtomicReference (or AtomicBoolean/AtomicInteger/…) class from java.util.concurrent.atomic package.</p>
<p>One of the benefits in doing so is that these classes also provide such methods as compareAndSet, which may be useful if you're creating several threads which can modify the same variable.</p>
<p><hr /></p>
<p>Another useful related pattern:</p>
<pre><code>final AtomicBoolean dataMsgReceived = new AtomicBoolean(false);
final AtomicReference<Message> message = new AtomicReference<Message>();
withMessageHandler(new MessageHandler() {
public void handleMessage(Message msg) {
if (msg.isData()) {
synchronized (dataMsgReceived) {
message.set(msg);
dataMsgReceived.set(true);
dataMsgReceived.notifyAll();
}
}
}
}, new Interruptible() {
public void run() throws InterruptedException {
synchronized (dataMsgReceived) {
while (!dataMsgReceived.get()) {
dataMsgReceived.wait();
}
}
}
});
</code></pre>
<p>In this particular example we could have simply waited on message for it to become non-null, however null may often be a valid value and then you need to use a separate flag to finish the wait.</p>
<p>waitMessageHandler(…) above is yet another useful pattern: it sets up a handler somewhere, then starts executing the Interruptible which may throw an exception, and then removes the handler in the finally block, like so:</p>
<pre><code>private final AtomicReference<MessageHandler> messageHandler = new AtomicReference<MessageHandler>();
void withMessageHandler(MessageHandler handler, Interruptible logic) throws InterruptedException {
synchronized (messageHandler) {
try {
messageHandler.set(handler);
logic.run();
} finally {
messageHandler.set(null);
}
}
}
</code></pre>
<p>Here I assume that the messageHandler's (if it's not null) handleMessage(…) method is called by another thread when a message is received. messageHandler must not be simply of MessageHandler type: that way you will synchronize on a changing variable, which is clearly a bug.</p>
<p>Of course, it doesn't need to be InterruptedException, it could be something like IOException, or whatever makes sense in a particular piece of code.</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/1305163#13051633Answer by sibnick for Hidden Features of Javasibnick2009-08-20T10:06:32Z2009-08-20T10:06:32Z<p>Comma & array. It is legal syntax: String s[] = {<br/>
"123" , <br/>
"234" <strong>,</strong><br/>
};</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/1305616#13056163Answer by mdakin for Hidden Features of Javamdakin2009-08-20T11:45:23Z2009-08-20T11:45:23Z<p>Most people does not know they can clone an array.</p>
<pre><code>int[] arr = {1, 2, 3};
int[] arr2 = arr.clone();
</code></pre>
http://stackoverflow.com/questions/15496/hidden-features-of-java/1674342#16743420Answer by Lastnico for Hidden Features of JavaLastnico2009-11-04T15:00:01Z2009-11-04T15:00:01Z<p>Use <code>StringWriter</code> instead of <code>StringBuffer</code> when you don't need synchronized management included in <code>StringBuffer</code>. It will increase the performance of your application.</p>
<p>Improvements for Java 7 would be even better than any hidden Java features:</p>
<ul>
<li><strong>Diamond syntax:</strong> <a href="http://mail.openjdk.java.net/pipermail/coin-dev/2009-February/000009.html" rel="nofollow">Link</a></li>
</ul>
<p>Don't use those infinite <> syntax at instanciation:</p>
<pre><code>Map<String, List<String>> anagrams = new HashMap<String, List<String>>();
// Can now be replaced with this:
Map<String, List<String>> anagrams = new HashMap<>();
</code></pre>
<ul>
<li><strong>Strings in switch:</strong> <a href="http://mail.openjdk.java.net/pipermail/coin-dev/2009-February/000001.html" rel="nofollow">Link</a></li>
</ul>
<p>Use String in switch, instead of old-C int:</p>
<pre><code>String s = "something";
switch(s) {
case "quux":
processQuux(s);
// fall-through
case "foo":
case "bar":
processFooOrBar(s);
break;
case "baz":
processBaz(s);
// fall-through
default:
processDefault(s);
break;
}
</code></pre>
<ul>
<li><strong>Automatic Resource Management</strong> <a href="http://mail.openjdk.java.net/pipermail/coin-dev/2009-February/000011.html" rel="nofollow">Link</a></li>
</ul>
<p>This old code:</p>
<pre><code>static void copy(String src, String dest) throws IOException {
InputStream in = new FileInputStream(src);
try {
OutputStream out = new FileOutputStream(dest);
try {
byte[] buf = new byte[8 * 1024];
int n;
while ((n = in.read(buf)) >= 0)
out.write(buf, 0, n);
} finally {
out.close();
}
} finally {
in.close();
}
}
</code></pre>
<p>can now be replaced by this much simpler code:</p>
<pre><code>static void copy(String src, String dest) throws IOException {
try (InputStream in = new FileInputStream(src);
OutputStream out = new FileOutputStream(dest)) {
byte[] buf = new byte[8192];
int n;
while ((n = in.read(buf)) >= 0)
out.write(buf, 0, n);
}
}
}
</code></pre>
http://stackoverflow.com/questions/15496/hidden-features-of-java/1804983#18049830Answer by unknown (google) for Hidden Features of Javaunknown (google)2009-11-26T17:57:23Z2009-11-26T17:57:23Z<p>You can switch(this) inside method definitions of enum classes. Made me shout "whut!" loudly when I discovered that this actually works.</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/1805139#18051390Answer by Jonathan Locke for Hidden Features of JavaJonathan Locke2009-11-26T18:43:48Z2009-11-26T18:43:48Z<p>Actually, what I love about Java is how few hidden tricks there are. It's a very obvious language. So much so that after 15 years, almost every one I can think of is already listed on these few pages.</p>
<p>Perhaps most people know that Collections.synchronizedList() adds synchronization to a list. What you can't know unless you read the documentation is that you can safely iterate on the elements of that list by synchronizing on the list object itself.</p>
<p>CopyOnWriteArrayList might be unknown to some, and Future represents an interesting way to abstract multithreaded result access.</p>
<p>You can attach to VMs (local or remote), get information on GC activity, memory use, file descriptors and even object sizes through the various management, agent and attach APIs.</p>
<p>Although TimeUnit is perhaps better than long, I prefer Wicket's Duration class.</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/1805211#18052112Answer by Jonathan Locke for Hidden Features of JavaJonathan Locke2009-11-26T19:03:03Z2009-11-26T19:03:03Z<p>Oh, I almost forgot this little gem. Try this on any running java process:</p>
<p>jmap -histo:live PID</p>
<p>You will get a histogram of live heap objects in the given VM. Invaluable as a quick way to figure certain kinds of memory leaks. Another technique I use to prevent them is to create and use size-bounded subclasses of all the collections classes. This causes quick failures in out-of-control collections that are easy to identify.</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/1807455#18074551Answer by Ashish for Hidden Features of JavaAshish2009-11-27T08:39:36Z2009-11-27T08:39:36Z<p>A feature with which you can display splash screens for your Java Console Based Applications.</p>
<p>Use the command line tool "java" or "javaw" with the option -splash</p>
<p>eg:
java -splash:C:\myfolder\myimage.png -classpath myjarfile.jar com.my.package.MyClass</p>
<p>the content of C:\myfolder\myimage.png will be displayed at the center of your screen, whenever you execute the class "com.my.package.MyClass"</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/1834084#18340840Answer by Devon_C_Miller for Hidden Features of JavaDevon_C_Miller2009-12-02T16:28:17Z2009-12-02T16:28:17Z<p>When working in Swing I like the hidden <code>Ctrl-Shift-F1</code> feature.</p>
<p>It dumps the component tree of the current window.<br>
(Assuming you have not bound that keystroke to something else.)</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/1838200#18382000Answer by fastcodejava for Hidden Features of Javafastcodejava2009-12-03T07:08:29Z2009-12-03T07:08:29Z<p>Surprises me that an interface can extend multiple interfaces but class can extend only one class.</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/1859579#18595793Answer by crowne for Hidden Features of Javacrowne2009-12-07T11:59:37Z2009-12-07T11:59:37Z<p>Classpath wild cards since Java 6.</p>
<pre><code>java -classpath ./lib/* so.Main
</code></pre>
<p>Instead of</p>
<pre><code>java -classpath ./lib/log4j.jar:./lib/commons-codec.jar:./lib/commons-httpclient.jar:./lib/commons-collections.jar:./lib/myApp.jar so.Main
</code></pre>
<p>See <a href="http://java.sun.com/javase/6/docs/technotes/tools/windows/classpath.html" rel="nofollow">http://java.sun.com/javase/6/docs/technotes/tools/windows/classpath.html</a></p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/1918613#19186130Answer by Sergio for Hidden Features of JavaSergio2009-12-16T23:47:36Z2009-12-16T23:47:36Z<p><a href="http://java.sun.com/developer/TechTips/2000/tt0711.html" rel="nofollow">Shutdown Hooks.</a> This allows to register a thread that will be created immediatly but started only when the JVM ends ! So it is some kind of "global jvm finalizer", and you can make usefull stuff in this thread (for example shutting down java ressources like an embedded hsqldb server). This works with System.exit(), or with CTRL-C / kill -15 (but not with kill -9 on unix, of course).</p>
<p>Moreover it's pretty easy to set up.</p>
<pre><code> Runtime.getRuntime().addShutdownHook(new Thread() {
public void run() {
endApp();
}
});;
</code></pre>