After reading Hidden Features of C# I wondered, What are some of the hidden features of Java?
|
251
|
|||||
|
|
|
Double Brace Initialization took me by surprise a few months ago when I first discovered it, never heard of it before. ThreadLocals are typically not so widely known as a way to store per-thread state. Since JDK 1.5 Java has had extremely well implemented and robust concurrency tools beyond just locks, they live in java.util.concurrent and a specifically interesting example is the java.util.concurrent.atomic subpackage that contains thread-safe primitives that implement the compare-and-swap operation and can map to actual native hardware-supported versions of these operations. |
||||||||||||||||||||
|
|
|
I was surprised by instance initializers the other day:
Executing the following code
will display:
I guess these would be useful if you had multiple constructors and needed common code? |
||||||||||||||||
|
|
|
Joint union in type parameter variance:
For example, if you wanted to take a parameter that's both Comparable and a Collection:
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. |
|||
|
|
How about covariant return types 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. 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:
You can call the subclass's |
||||
|
|
|
For most people I interview for Java developer positions labeled blocks are very surprising. Here is an example:
Who said |
||||||||||||||||||||
|
|
|
Allowing methods and constructors in enums surprised me. For example:
You can even have a "constant specific class body" which allows a specific enum value to override methods. More documentation here. |
||||||||
|
|
|
Transfer of control in a finally block throws away any exception. The following code does not throw RuntimeException -- it is lost.
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;
}
}
From http://jamesjava.blogspot.com/2006/03/dont-return-in-finally-clause.html |
||||||||
|
|
|
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. |
|||
|
|
Dynamic proxies (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. |
|||
|
|
|
|
The type params for generic methods can be specified explicitly like so:
|
||||
|
|
|
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. 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. All those languages make use of the HotSpot optimizations. The VM is very well monitor and debuggable. |
||||||||||||
|
|
|
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
bars is automatically converted to array of the specified type. Not a huge win, but a win nonetheless. |
||||
|
|
|
My favorite: dump all thread stack traces to standard out. windows: CTRL-Break in your java cmd/console window unix: |
||||
|
|
|
A couple of people have posted about instance initializers, here's a good use for it:
Is a quick way to initialize maps if you're just doing something quick and simple. Or using it to create a quick swing frame prototype:
Of course it can be abused:
|
||||
|
|
|
The asList method in
|
||||
|
|
|
The addition of the for-each loop construct in 1.5. I <3 it.
And can be used in nested instances:
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:
|
||||||||||||
|
|
|
Language-level assert keyword. |
||||||||
|
|
|
Using this 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.
|
||||||||
|
|
|
static imports to "enhance" the language, so you can do nice literal things in type safe ways:
(can also do with maps, arrays, sets). http://gleichmann.wordpress.com/2008/01/13/building-your-own-literals-in-java-lists-and-arrays/ Taking it further:
|
||||
|
|
|
This is not exactly "hidden features" and not very useful, but can be extremely interesting in some cases:
|
||||
|
|
|
final initialization can be postponed. 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:
|
||||||||
|
|
|
Haven't seen anyone mention instanceof being implemented in such a way that checking for null is not necessary. Instead of:
just use:
|
|||
|
|
Java processing does a neat trick on variable definition if you do not use a default initializer.
{
int x;
if(whatever)
x=1;
if(x == 1)
...
}
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: int x=0; String s=null; to be a bad pattern since it blocks this helpful checking. 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. |
||||||||
|
|
|
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. 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. JConsole in Java 5: JConsole in Java 5 JConsole in Java 6: JConsole in Java 6 And while you are at it, have a good look at the other tools in the series: Java 6 troubleshooting tools |
||||||||
|
|
|
Not really part of the Java language, but the javap disassembler which comes with Sun's JDK is not widely known or used. |
|||
|
|
|
|
If you do a lot of JavaBean development and work with property change support, you generally wind up writing a lot of setters like this:
I recently stumbled across a blog that suggested a more terse implementation of this that makes the code a lot easier to write:
It actually simplified things to the point where I was able to adjust the setter template in Eclipse so the method gets created automatically. |
||||||||
|
|
|
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. |
||||
|
|
|
Not really a feature, but it makes me chuckle that |
||||
|
|
|
My vote goes to java.util.concurrent 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. java.util.Timer and TimerTask may safely be put to rest. 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. It reads a lot better than the usual someValue * 1000 or someValue / 1000. |
|||
|
|
|
|
I really like the rewritten Threading API from Java 1.6. Callables are great. They are basically threads with a return value. |
|||
