After reading Hidden Features of C# I wondered, What are some of the hidden features of Java?
|
251
|
|||||
|
|
|
Haven't seen anyone mention instanceof being implemented in such a way that checking for null is not necessary. Instead of:
just use:
|
|||
|
|
The strictfp keyword. (I never saw it used in a real application though :) You can get the class for primitive types by using the following notation: int.class, float.class, etc. Very useful when doing reflection. Final arrays can be used to "return" values from anonymous inner classes (warning, useless example below):
|
|||
|
|
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. |
|||
|
|
|
|
Apparently with some debug builds there is an option which dumps the native (JIT) assembly code from HotSpot: http://weblogs.java.net/blog/kohsuke/archive/2008/03/deep_dive_into.html 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. |
||||
|
|
|
If you hook onto groovy, you will have many more surprises than these :-) |
||||
|
|
|
Instances of the same class can access private members of other instances:
|
||||
|
|
|
SwingWorker for easily managing user interface callbacks from background threads. |
|||
|
|
|
|
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. |
||||
|
|
|
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. |
||||
|
|
|
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 value of:
is (From Java Puzzlers) |
||||
|
|
|
You can access final local variables and parameters in initialization blocks and methods of local classes. Consider this:
A bit like a closure, isn't it? |
|||
|
|
These answers almost could be a website in themselves... Hidden Java... Hmmm... |
|||
|
|
|
|
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. |
||||||||
|
|
|
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. |
|||
|
|
|
|
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:
|
||||||||
|
|
|
Annotation Processing API from Java 6 looks very perspective for code generation and static code verification. |
|||
|
|
|
|
You can declare a class in a method:
|
||||
|
|
|
Something that really surprised me was the custom serialization mechanism. While these methods are private!!, they are "mysteriously" called by the JVM during object serialization.
This way you can create your own custom serialization to make it more "whatever" (safe, fast, rare, easy etc. ) 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. Here is an article. http://java.sun.com/developer/technicalArticles/Programming/serialization/ |
|||
|
|
String Parameterised Class Factory.
Load a resource (property file, xml, xslt, image etc) from deployment jar file.
|
|||
|
|
|
|
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. |
||||||||
|
|
|
How about Properties files in your choice of encodings? Used to be, when you loaded your Properties, you provided an InputStream and the
But, as of JDK 1.6, there's a |
|||
|
|
|
|
Since no one else has said it yet (I Think) my favorite feature is Auto boxing!
|
||||
|
|
|
This is not exactly "hidden features" and not very useful, but can be extremely interesting in some cases:
|
||||
|
|
|
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.
|
||||||||
|
|
|
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 http://java.sun.com/docs/hotspot/gc5.0/gc_tuning_5.html). |
|||
|
|
My favorite: dump all thread stack traces to standard out. windows: CTRL-Break in your java cmd/console window unix: |
||||
|
|
|
Not really a feature, but an amusing trick I discovered recently in some Web page:
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! |
||||||||
|
|
|
"const" is a keyword, but you can't use it.
I guess the compiler writers thought it might be used in the future and they'd better keep it reserved. |
||||
|
|
|
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:
|
||||||||||||
|
