After reading Hidden Features of C# I wondered, What are some of the hidden features of Java?
|
248
|
|
|
|
|
|
A feature with which you can display splash screens for your Java Console Based Applications. Use the command line tool "java" or "javaw" with the option -splash eg: java -splash:C:\myfolder\myimage.png -classpath myjarfile.jar com.my.package.MyClass 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" |
|||
|
|
Oh, I almost forgot this little gem. Try this on any running java process: jmap -histo:live PID 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. |
|||
|
|
|
|
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. 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. CopyOnWriteArrayList might be unknown to some, and Future represents an interesting way to abstract multithreaded result access. 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. Although TimeUnit is perhaps better than long, I prefer Wicket's Duration class. |
|||
|
|
|
|
You can switch(this) inside method definitions of enum classes. Made me shout "whut!" loudly when I discovered that this actually works. |
|||
|
|
|
|
Use Improvements for Java 7 would be even better than any hidden Java features:
Don't use those infinite <> syntax at instanciation:
Use String in switch, instead of old-C int:
This old code:
can now be replaced by this much simpler code:
|
|||
|
|
|
|
Most people does not know they can clone an array.
|
|||
|
|
|
|
Comma & array. It is legal syntax: String s[] = { |
|||
|
|
|
|
It has already been mentioned that a final array can be used to pass a variable out of the anonymous inner classes. Another, arguably better and less ugly approach though is to use AtomicReference (or AtomicBoolean/AtomicInteger/…) class from java.util.concurrent.atomic package. 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. Another useful related pattern:
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. 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:
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. 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. |
|||
|
|
|
|
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: |
|||
|
|
Java Bean property accessor methods do not have to start with "get" and "set". Even Josh Bloch gets this wrong in Effective Java. |
||||
|
|
|
An optimization trick that makes your code easier to maintain and less susceptible to a concurrency bug.
$ time java Slow Average: 18.018s
$ time java Fast Average: 10.509s 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). Another advantage to this technique (always using accessors) is that it eliminates a potential bug in the Slow class. If a second thread were to continually reset the value of i to 0 (by calling Tested using J2SE 1.6.0_13 on Linux 2.6.27-14. |
|||
|
|
You can define an anonymous subclass and directly call a method on it even if it implements no interfaces.
|
|||
|
|
|
|
Perhaps the most surprising hidden feature is the sun.misc.Unsafe class. http://www.docjar.com/html/api/ClassLib/Common/sun/misc/Unsafe.java.html You can;
BTW: Incorrect use of this class will kill the JVM. I don't know which JVMs support this class so its not portable. |
||||
|
|
|
Part feature, part bother: Java's String handling to make it 'appear' a native Type (use of operators on them, +, +=) Being able to write:
is very convenient, but is simply syntactic sugar for (ie gets compiled to):
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. A loop such as:
can (should) be rewritten in your code as:
and will run approximately 80+% faster than the original loop! (up to 180% on some benchmarks I have run) |
|||
|
|
|
|
People are sometimes a bit surprised when they realize that it's possible to call private methods and access/change private fields using reflection... Consider the following class:
Executing this program...
...will yield the following output:
|
|||
|
|
|
|
Source code URLs. E.g. here is some legal java source code:
(Yes, it was in Java Puzzlers. I laughed...) |
|||
|
|
|
|
Read "Java Puzzlers" by Joshua Bloch and you will be both enlightened and horrified. |
|||
|
|
|
|
Casting/Conversion by precedence in Java 1.4, this code:
Can be "represented" like this:
|
|||
|
|
|
|
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.
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.
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). 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.
|
|||
|
|
|
|
You can use enums to implement an interface.
|
|||
|
|
i personally discovered |
|||
|
|
List.subList returns a view on the original list 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. List subList(int fromIndex, int toIndex)
|
|||
|
|
|
|
I like the static import of methods. For example create the following util class:
Then use it like this.
|
|||
|
|
|
|
with static imports you can do cool stuff like:
|
||||
|
|
|
You can build a string sprintf-style using String.format().
You can of course also use special specifiers to modify the output. More here: http://java.sun.com/j2se/1.5.0/docs/api/java/util/Formatter.html#syntax |
|||
|
|
|
|
The next-generation Java plugin found in Java 1.6 Update 10 and later has some very neat features:
Many other things that are documented here: http://jdk6.dev.java.net/plugin2/ More from this release here: http://jdk6.dev.java.net/6u10ea.html |
|||
|
|
|
|
I enjoyed |
|||
|
|
|
|
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. |
|||
|
|
