After reading Hidden Features of C# I wondered, What are some of the hidden features of Java?
|
locked by Bill the Lizard♦ Jun 5 '12 at 18:13
This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar questions here. This question and its answers are frozen and cannot be changed. More info: FAQ.
|
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. |
|||||||||
|
|
Here's my list. My favourite (and scariest) hidden feature is that you can throw checked exceptions from methods that are not declaring to throw anything.
Also you may like to know you can throw 'null'...
Guess what this prints:
And, guess what this returns:
the above should not surprise good developers. In Java you can declare an array in following valid ways:
So following Java code is perfectly valid:
Is there any valid reason why, instead, the following code shouldn't be valid?
I think, that the above syntax would have been a valid substitute to the varargs introduced in Java 5. And, more coherent with the previously allowed array declarations. |
|||||
|
|
The value of:
is (From Java Puzzlers) |
|||||||||
|
|
Shutdown Hooks. This allows to register a thread that will be created immediatly but started only when the JVM ends ! So it is some kind of "global jvm finalizer", and you can make useful stuff in this thread (for example shutting down java ressources like an embedded hsqldb server). This works with System.exit(), or with CTRL-C / kill -15 (but not with kill -9 on unix, of course). Moreover it's pretty easy to set up.
|
|||||||||
|
|
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. |
|||||||||||||
|
|
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:
|
|||||||||||||
|
|
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 |
|||||||||
|
|
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. |
|||||||||
|
|
Not so hidden, but interesting. You can have a "Hello, world" without main method ( it throws NoSuchMethodError thought ) Originally posted by RusselW on Strangest language feature
|
|||||||||||||
|
|
This is not really a hidden feature but it did give me a big surprise when I saw this compiled fine:
the reason why it compiles is that the line http://www.google.com the "http:" part is treated by the compiler as a label and the rest of the line is a comment. So, if you want to write some bizzare code (or obfuscated code), just put alot of http addresses there. ;-) |
|||||||||||||
|
|
You can declare a class in a method:
|
|||||||||
|
|
It took them long enough to add support for this, |
||||
|
|
|
I really like the rewritten Threading API from Java 1.6. Callables are great. They are basically threads with a return value. |
||||
|
|
|
Self-bound generics:
|
|||||
|
|
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)
|
|||||
|
|
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. |
||||
|
|
|
A feature with which you can display splash screens for your Java Console Based Applications. Use the command line tool eg:
the content of |
||||
|
|
|
I like the static import of methods. For example create the following util class:
Then use it like this.
Static Imports works with any class, even Math...
|
|||||
|
|
Not really a feature, but it makes me chuckle that |
|||||||||
|
|
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. |
|||||
|
|
with static imports you can do cool stuff like:
|
|||||
|
|
You can define and invoke methods on anonymous inner classes. Well they're not that hidden, but very few people know they can be used to define a new method in a class and invoke it like this:
Probably is not very common because it not very useful either, you can call the method it only when you define it ( or via reflection ) |
|||||
|
|
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):
|
|||||||||
|
|
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 |
||||
|
|
|
The C-Style printf() :)
Output: 3 2.718282 2.7183 Binary Search (and it's return value)
Similar to C#, if '2' is not found in the array, it returns a negative value but if you take the 1's Complement of the returned value you actually get the position where '2' can be inserted. In the above example, position = -2, ~position = 1 which is the position where 2 should be inserted...it also lets you find the "closest" match in the array. I thinks its pretty nifty... :) |
||||
|
|
|
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. |
|||||
|
|
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! |
||||
|
|
|
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) |
|||||||||
|
|
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 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: |
|||||||||
|