After reading Hidden Features of C# I wondered, What are some of the hidden features of Java?
|
259
|
|||||
|
|
|
Language-level assert keyword. |
||||||||
|
|
|
I really like the rewritten Threading API from Java 1.6. Callables are great. They are basically threads with a return value. |
|||
|
|
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:
|
||||
|
|
|
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. |
||||||||||||
|
|
|
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. |
||||||||||||||||||||
|
|
|
Not really a feature, but it makes me chuckle that |
||||
|
|
|
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 |
||||||||
|
|
|
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. |
||||
|
|
|
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 |
||||
|
|
|
Functors are pretty cool. They are pretty close to a function pointer, which everyone is usually quick to say is impossible in Java. |
||||
|
|
|
For most people I interview for Java developer positions labeled blocks are very surprising. Here is an example:
Who said |
||||||||||||||||||||
|
|
|
I was aware that Java 6 included scripting support, but I just recently discovered jrunscript, 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 |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
I know this was added in release 1.5 but the new enum type is a great feature. Not having to use the old "int enum pattern" has greatly helped a bunch of my code. Check out JLS 8.9 for the sweet gravy on your potatoes! |
|||
|
|
final for instance variables: 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. static {something;}: Used to initialize static members (also I prefer a static method to do it (because it has a name). Not thought. |
|||
|
|
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? |
||||||||||||||||
|
|
|
Joshua Bloch's new Effective Java is a good resource. |
|||
|
|
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. |
||||||||
|
|
|
Not really part of the Java language, but the javap disassembler which comes with Sun's JDK is not widely known or used. |
|||
|
|
|
|
Self-bound generics:
|
|||
|
|
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. |
|||
|
|
The type params for generic methods can be specified explicitly like so:
|
||||
|
|
|
It took them long enough to add support for this, |
|||
|
|
|
|
The asList method in
|
||||
|
|
|
Some control-flow tricks,
The rules for definite assignment will check that a final variable is always assigned through a simple control-flow analysis:
|
|||
|
|
|
|
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. |
|||
|
|
|
|
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 |
||||||||
|
|
|
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:
|
||||||||||||
|
