After reading Hidden Features of C# I wondered, What are some of the hidden features of Java?
|
252
|
|||||
|
|
|
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. |
||||
|
|
|
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: |
|||
|
|
Comma & array. It is legal syntax: String s[] = { |
|||
|
|
|
|
Most people does not know they can clone an array.
|
|||
|
|
|
|
Classpath wild cards since Java 6.
Instead of
See http://java.sun.com/javase/6/docs/technotes/tools/windows/classpath.html |
|||
|
|
|
|
Since no one else has said it yet (I Think) my favorite feature is Auto boxing!
|
||||
|
|
|
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. |
|||
|
|
|
|
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. |
||||
|
|
|
I like the static import of methods. For example create the following util class:
Then use it 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.
|
|||
|
|
|
|
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:
|
|||
|
|
|
|
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. |
|||
|
|
|
|
Instances of the same class can access private members of other instances:
|
||||
|
|
|
Casting/Conversion by precedence in Java 1.4, this code:
Can be "represented" like this:
|
|||
|
|
|
|
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. |
|||
|
|
|
|
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" |
|||
|
|
"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. |
||||
|
|
|
I enjoyed |
|||
|
|
|
|
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 |
|||
|
|
|
|
Source code URLs. E.g. here is some legal java source code:
(Yes, it was in Java Puzzlers. I laughed...) |
|||
|
|
|
|
Java Bean property accessor methods do not have to start with "get" and "set". Even Josh Bloch gets this wrong in Effective Java. |
||||
|
|
|
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:
|
|||
|
|
You can switch(this) inside method definitions of enum classes. Made me shout "whut!" loudly when I discovered that this actually works. |
|||
|
|
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. |
|||
|
|
|
|
When working in Swing I like the hidden It dumps the component tree of the current window. |
|||
|
|
|
|
Surprises me that an interface can extend multiple interfaces but class can extend only one class. |
|||
|
|
|
|
These answers almost could be a website in themselves... Hidden Java... Hmmm... |
|||
|
|
|
|
If you hook onto groovy, you will have many more surprises than these :-) |
||||
|
